formula to change colour of text
how do i get a cell to perform as follows:
"if cell a3 is true then cell b3 and cell c3 shows text colour as red"
Cell a3 is a tickbox cell
Cells b3 & c3 are just text cells
Mac mini, macOS 15.3
how do i get a cell to perform as follows:
"if cell a3 is true then cell b3 and cell c3 shows text colour as red"
Cell a3 is a tickbox cell
Cells b3 & c3 are just text cells
Mac mini, macOS 15.3
Here is how you can highlight multiple cells in a row (or the entire row) I did my example below starting in row 2, not 3.
Formula in D2 =IF($A2=TRUE,"~","")
Fill down to complete the column
The ~ character is used in the formula because it is not a typical character found in text. If your text in column A might have a ~ then use a different character in the formula. I often use CHAR(10000) in place of "~".
Creating a highlighting rule for all the cells at one time:
You can add a column
In C2 put this formula that you then drag down
With this formula you tell him to write in C2 the same name as B2 if A2 is true, otherwise it doesn't put anything
=IF(B2;C2;””)
Then choose as conditional highlighting for B2
The text is = cell C2
While for A2 choose conditional highlighting
Cell the value is TRUE
So you select A2 and B2 together and combine rules
The result is what you see in the Screenshots
At the end you can hide column C
Thank you very much for your reply.The formula does exactly what I need
Regards
TenpinBozz
formula to change colour of text