I am trying to make a row turn red if both the Interview date AND Time Slot are the same. I was able to do this with just Interview dates being dups but am getting stuck with how to also add Time Slot into the mix. I used a helper column to with the formula
=COUNTIF([Interview Date]:[Interview Date], [Interview Date]@row)
and then conditional formatting to turn red if more than 1.
I tried =COUNTIFS([Interview Date]:[Interview Date], [Interview Date]@row), AND([Time Slot]:[Time Slot], [Time Slot]@row)) but got and unparseable error.
Any thoughts?