Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I have some cell which have by default formulas. However the user may change that and change the formula by a value. Question : what kind of condition do I need to put on the conditional formatting to have those modified cellls (no more formula but value) a different color .? Many thanks for your help !. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Create a UDF like so
Function IsFormula(rng As Range) IsFormula = rng.HasFormula End Function and then use that in the CF like so =IsFormula(C2) -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "François" wrote in message ... Hello, I have some cell which have by default formulas. However the user may change that and change the formula by a value. Question : what kind of condition do I need to put on the conditional formatting to have those modified cellls (no more formula but value) a different color .? Many thanks for your help !. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for the proposition.
"Bob Phillips" wrote: Create a UDF like so Function IsFormula(rng As Range) IsFormula = rng.HasFormula End Function and then use that in the CF like so =IsFormula(C2) -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "François" wrote in message ... Hello, I have some cell which have by default formulas. However the user may change that and change the formula by a value. Question : what kind of condition do I need to put on the conditional formatting to have those modified cellls (no more formula but value) a different color .? Many thanks for your help !. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional formatting--different formatting depending on cell con | Excel Discussion (Misc queries) | |||
Formatting cells in a column with conditional formatting? | Excel Discussion (Misc queries) | |||
Protect Cell Formatting including Conditional Formatting | Excel Discussion (Misc queries) | |||
conditional Formatting based on cell formatting | Excel Worksheet Functions | |||
Conditional Formatting that will display conditional data | Excel Worksheet Functions |