If Functions

  • Thread starter Thread starter Johnnie
  • Start date Start date
J

Johnnie

I have the following statement in H#:
=IF((NOW()+14)>G#,"Review","""

The problem is that ocassionally there will be not date in the G colum and I
do not want the "Review" to appear in the H colum. How can I change to so
that the cell remains empty if there is no date?

Thanks for your help.

Johnnie
 
=IF(AND(G10<>"",NOW()+14)>G10,"Review","")

If this post helps click Yes
 
Hi Johnie,

Try this:

=IF(OR(ISBLANK(G1),(NOW()+14)<G1),"","Review")

Judith
 
Judith,
It works great. Thanks so much!
Johnnie

JudithJubilee said:
Hi Johnie,

Try this:

=IF(OR(ISBLANK(G1),(NOW()+14)<G1),"","Review")

Judith
 
Judith,
It works great. Thanks so much!
Johnnie

JudithJubilee said:
Hi Johnie,

Try this:

=IF(OR(ISBLANK(G1),(NOW()+14)<G1),"","Review")

Judith
 

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

Character Index 1
Add formula if 2
Sum If - I think 5
msgBox after update a cell 9
Counting cells 6
Hiding colums when saving as html 4
Using Dates with the IF function 2
Lowest numbers 7

Back
Top