I am assuming you want to different conditions so that you have 2 different patterns based on those separate conditions...
For condition 1, (Its the same house number and the departure date is one day before the next arrival date for the same house) after selecting the entire range, select Use formula to determine which cells to format and enter:
=OR(COUNTIFS($A$10:$A$35,$A10,$C$10:$C$35,$B10-1),COUNTIFS($A$10:$A$35,$A10,$B$10:$B$35,$C10+1))
select your formats.
For condition 2 (Its the same house number and the departure date is the same as the next arrival date for the same house
):
=OR(COUNTIFS($A$10:$A$35,$A10,$C$10:$C$35,$B10),COUNTIFS($A$10:$A$35,$A10,$B$10:$B$35,$C10))
Bookmarks