Reputation: 109
Trying to highlight only cells within the row that are not blank if "shipper printed" is selected in column "M".
So far my unsuccessful conditional formatting:
=AND(NOT(ISBLANK(A:N),$M:$M="SHIPPER PRINTED"))
Upvotes: 2
Views: 205
Reputation: 59442
Please select ColumnsA:N and try the formula rule:
=AND(NOT(ISBLANK(A1)),$M1="SHIPPER PRINTED")
CF handles the ranges for itself, based on your selection, but you do need to bring the final parenthesis forward, to 'close' the NOT sooner.
Upvotes: 2