I have a spreadsheet with a bunch of rows like this:
Name | ID | Category | Attributes...
-----------------------------------------------------
I don't believe this is easily done with the built in tools, however you can add a calculated column, then apply conditional formatting based on it.
This example assumes that your data is sorted by the category column. If you are not sorting the table by the category column, you will need one more step, which is to create a lookup table where you calculate the TRUE/FALSE COL_STRIPE value, then in your COL_STRIPE column, perform a VLOOKUP of it.
Here is a working example
=IF(C2<>C1,IFERROR(NOT(E1),FALSE),E1)
. IFERROR()
statement will set it to false.=NOT($E2)
, this will apply the format to all rows for which the E column (COL_STRIPE) is FALSE