Forum Discussion
Tony2021
Apr 29, 2022Steel Contributor
Conditional Format form - between date and 30 days
Hello Experts, I have a form in datasheet view. I need to conditional format txtDate for any records in the current month. Its a little tricky since if there is not a record with the current mo...
- Apr 30, 2022
you can simplify your Criteria:
[txtDate] Between DateSerial(Year(Date()), Month(Date()), 1) And DateAdd("d",30,Date())Note i remove the equal (=) symbol.
arnel_gp
Apr 30, 2022Steel Contributor
you can simplify your Criteria:
[txtDate] Between DateSerial(Year(Date()), Month(Date()), 1) And DateAdd("d",30,Date())
Note i remove the equal (=) symbol.