=AND($A1="Rejected",A1="")
In conditional format, if I want to highlight any cell in a row that is blank , IF Column A states "Rejected" (Cells go from A: BG ) how do i do this please?
For row 1, the formula would look like:
and choose your highlighting color.Code:=AND($A1="Rejected",A1="")
To apply this to a whole large range, select all the cells that you want to apply it to, and then write the formula as it applies to the VERY first cell in your range.
If you use the Absolute/Relative range references correctly (like I did above), it will automatically adjust for all other cells.