=ISNUMBER(A3)
Note that none of those dates are at least 2 days in the future, so none of them would be highlighted!I am testing with 01/11/17, 02/11/17, 03/11/17, 04/11/17, 05/11/17
=AND(A3-TODAY()>=2,WEEKDAY(A3,2)<6)
=AND(A3-TODAY()<2,WEEKDAY(A3,2)<6)
Why would it highlight the 8th? That is not two days in the future. If you would like to highlight all future weekdays, just use this variation:I was looking for the formula to highlight say 8th, 9th, 10th etc etc
=AND(A3>TODAY(),WEEKDAY(A3,2)<6)