Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm usually quite good with conditional formatting but I don't think it can
handle what I need. Let's say in cell A1 I have a date. In cell A3 I have the conditional format =(TODAY()-A128) shade in red. (If it's more than 28 days from the date show me in red) If I enter a date in cell A2 then I want the conditional format to be ignored. Can this be done with conditional formatting or will it take VB? If it's VB what would you suggest? Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=(TODAY()-A128)*(A2="")
clearly once you put something in A2 the condition will fail. -- Gary's Student gsnu200704 "Les" wrote: I'm usually quite good with conditional formatting but I don't think it can handle what I need. Let's say in cell A1 I have a date. In cell A3 I have the conditional format =(TODAY()-A128) shade in red. (If it's more than 28 days from the date show me in red) If I enter a date in cell A2 then I want the conditional format to be ignored. Can this be done with conditional formatting or will it take VB? If it's VB what would you suggest? Thanks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Gary''s Student, worked perfectly.
"Gary''s Student" wrote: =(TODAY()-A128)*(A2="") clearly once you put something in A2 the condition will fail. -- Gary's Student gsnu200704 "Les" wrote: I'm usually quite good with conditional formatting but I don't think it can handle what I need. Let's say in cell A1 I have a date. In cell A3 I have the conditional format =(TODAY()-A128) shade in red. (If it's more than 28 days from the date show me in red) If I enter a date in cell A2 then I want the conditional format to be ignored. Can this be done with conditional formatting or will it take VB? If it's VB what would you suggest? Thanks. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Perhaps you can use conditional formats with two conditions linked with Or
something like this ... =Or(A20, (TODAY()-A128)) -- HTH... Jim Thomlinson "Les" wrote: I'm usually quite good with conditional formatting but I don't think it can handle what I need. Let's say in cell A1 I have a date. In cell A3 I have the conditional format =(TODAY()-A128) shade in red. (If it's more than 28 days from the date show me in red) If I enter a date in cell A2 then I want the conditional format to be ignored. Can this be done with conditional formatting or will it take VB? If it's VB what would you suggest? Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Deleting Rows With Non-Needed Data between Needed Data | Excel Worksheet Functions | |||
MCT Needed | Excel Discussion (Misc queries) | |||
More IF help needed | Excel Discussion (Misc queries) | |||
Help needed... | Excel Discussion (Misc queries) | |||
help needed | Excel Worksheet Functions |