Reputation: 361
I am trying to get the result in the image attached. If I check a checkBox in Column A, I want it to also to highlight the same SKU & Location Column H,I(in Bright Green). Conditional formatting or if script could do this?
Upvotes: 1
Views: 797
Reputation: 1
try:
=REGEXMATCH($H2&$I2, TEXTJOIN("|", 1, FILTER($B$2:$B&$C$2:$C, $A$2:$A=TRUE)))
=REGEXMATCH($H2, TEXTJOIN("|", 1, FILTER($B$2:$B, $A$2:$A=TRUE)))
Upvotes: 2
Reputation: 2930
You could simply achieve this using conditional formatting. These are the steps to follow:
Hope this has helped you, let me know if you need anything else (like an Apps Script implementation of this) or if you did not understand anything.
Upvotes: 0