Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
in excel, can I use values based on color for an "if, then" condition? if the
name is in red font, then multiply B3 by D3. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You need a UDF, for example
Function CI(rng as Range) If rng.Count = 1 Then CI = rng.Font.Colorindex End If End Sub and use like this =IF(CI(B3)=3,B3*D3,"") -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "carlos" wrote in message ... in excel, can I use values based on color for an "if, then" condition? if the name is in red font, then multiply B3 by D3. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to concatenate into "B1" B2 thru B"x" based on new data in "Col A" | Excel Discussion (Misc queries) | |||
"IF"- "THEN" type Formula based on Null value | Excel Worksheet Functions | |||
Can I apply a "score" based on multiple cell values? | Excel Worksheet Functions | |||
Any IF(A2=font color=red", "1", "0") in excel? Or a way to do it? | Excel Discussion (Misc queries) | |||
Changing "returned" values from "0" to "blank" | Excel Worksheet Functions |