Related:
- Change a cell content according with the color of another cell
- If cell contains (multiple text criteria) then return (corresponding text criteria) ✓ - Excel Forum
- Excel conditional formatting if another cell contains specific text ✓ - Excel Forum
- Highlight cell if another cell contains text ✓ - Excel Forum
- Excel if cell color is red then - Guide
- Count if cell contains number - Excel Forum
1 reply
That Cell is a function, and in this case, "the value 1 if the cell is formatted in color for negative values; otherwise returns 0 (zero)."
You can write a user defined function in such a manner...
press Alt-F11, and Insert New Module
In that module define a new function such as:
Now in the cell(A1) that you want to see what the color is type in
=ColorN(B4)
And if B4 is Purple, that cell will display the index of purple .
Now Change your cell Into a "-" based on a value in A1.
I hope this helps!
Have FUN!
It's kind of fun to do the impossible! -Walter Elias Disney
You can write a user defined function in such a manner...
press Alt-F11, and Insert New Module
In that module define a new function such as:
Function ColorN(Cell_Color As Range) ColorN = Cell_Color.Interior.ColorIndex End Function
Now in the cell(A1) that you want to see what the color is type in
=ColorN(B4)
And if B4 is Purple, that cell will display the index of purple .
Now Change your cell Into a "-" based on a value in A1.
I hope this helps!
Have FUN!
It's kind of fun to do the impossible! -Walter Elias Disney