Hi,
I currently have this Formula in column AY:
and these two conditional formattings to turn red when there is a clash in times that are 29 minutes of each other:
but for some reason only one of the times goes red:
How can I make it so both of them turn red?
Thanks in advance!
I currently have this Formula in column AY:
Excel Formula:
=IF([@[Planning Date]]="N/A","",
IF(ISFORMULA([@[Planning Time]]),"",
CONCATENATE(TEXT([@[Planning Date]],"dd/mm/yy")," ",TEXT([@[Planning Time]],"hh:mm am/pm"))))
and these two conditional formattings to turn red when there is a clash in times that are 29 minutes of each other:
Excel Formula:
=AND(ROW()>1, ABS($V3-$V2)*1440<29,$AX3="No",COUNTIF($AQ3,"Planning Time Approved*")=0)
Excel Formula:
=AND(COUNTIF($AY$3:$AY$200,V3)>1,NOT($AY3=""),COUNTIF($AQ3,"Planning Time Approved*")=0,$AX3="No")
but for some reason only one of the times goes red:
How can I make it so both of them turn red?
Thanks in advance!