Forum Discussion

Tony2021's avatar
Tony2021
Steel Contributor
Apr 29, 2022

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...
  • arnel_gp's avatar
    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.

Resources