Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
First enter this UDF:
Function IsGreen(r As Range) As Boolean IsGreen = False If r.Count 1 Then Exit Function If r.Interior.ColorIndex = 4 Then IsGreen = True End If End Function The function will return true if the argument has a background color of green (#4). Then in J1 enter: =IF(IsGreen(I1),"X","") This method will not work of conditional formatting. -- Gary's Student "CMagras" wrote: I am trying to create a formula that would place an X in Cell J1 if Cell I1 is green. Can someone help? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
excel- want to format cell formula to the file name | Excel Worksheet Functions | |||
Custom Format Cell | Excel Discussion (Misc queries) | |||
Deferring conditional formatting? | Excel Discussion (Misc queries) | |||
Creating a check mark box | Setting up and Configuration of Excel | |||
GET.CELL | Excel Worksheet Functions |