Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(AND(G10<"",NOW()+14)G10,"Review","")
If this post helps click Yes --------------- Jacob Skaria "Johnnie" wrote: 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Johnie,
Try this: =IF(OR(ISBLANK(G1),(NOW()+14)<G1),"","Review") Judith -- Hope this helps "Johnnie" wrote: 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 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Judith,
It works great. Thanks so much! Johnnie "JudithJubilee" wrote: Hi Johnie, Try this: =IF(OR(ISBLANK(G1),(NOW()+14)<G1),"","Review") Judith -- Hope this helps "Johnnie" wrote: 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 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Jacob.
Johnnie "Jacob Skaria" wrote: =IF(AND(G10<"",NOW()+14)G10,"Review","") If this post helps click Yes --------------- Jacob Skaria "Johnnie" wrote: 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to convert cell formula functions to code functions | Excel Discussion (Misc queries) | |||
formula/functions for average and if functions | Excel Worksheet Functions | |||
efficiency: database functions vs. math functions vs. array formula | Excel Discussion (Misc queries) | |||
Looking for a site with functions that substitute the ATP functions | Excel Worksheet Functions | |||
Nesting functions in the functions dialog box | Excel Worksheet Functions |