I have a listbox (list14) that displays 3 columns.
The row source is SELECT QryPaymentsDue.FullName, QryPaymentsDue.[And], QryPaymentsDue.[Next Payment Due] FROM QryPaymentsDue;
Dan.
The row source is SELECT QryPaymentsDue.FullName, QryPaymentsDue.[And], QryPaymentsDue.[Next Payment Due] FROM QryPaymentsDue;
- I want an if statement to say that if column 3 (Next Payment Due) is <Todays Date then the row colour to flash red.
- If column 3 is =Today() then the row colour to be green.
- And if column 3 is after today (a future date) >Todays Date it can be white.
Dan.