Conditional Formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I need your help about Conditional Formula.

if A_col has date then i want change the color(any) in B_col.

I think you could understand this.

Thanks/Tufail
 
You need a UDF

Function HasDate(rng As Range)
HasDate = IsDate(rng.Value)
End Function


and in the CF, use

=HasDate(A1)

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
does for me.

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

DATE 2
MACRO every 2nd Coulm want delete in selection 1
SUMIF 5
DATE & MONTH minus ? 5
countif 2
countif formula 1
SOMEONE CAN HELP ? 2
COUNTIF with two colunms 7

Back
Top