Solved Conditional Formatting Expression Data Format Error

Kayleigh

Member
Local time
Today, 13:53
Joined
Sep 24, 2020
Messages
709
Hi
I have just encountered an issue that have not found previously.
When designing conditional formatting rules for date fields it would change the expression to date format even though I input as regular integer. I tried a couple of times and this was result.
See attached screenshot.
 

Attachments

  • Screenshot 2022-05-03 160813.png
    Screenshot 2022-05-03 160813.png
    12.9 KB · Views: 210
  • Screenshot 2022-05-03 160911.png
    Screenshot 2022-05-03 160911.png
    12.7 KB · Views: 200
Try placing a equals sign at the beginning of your expression
 
Tried but getting invalid syntax.
Expression is: [TotalDue]<0.01
 
OK, that's a weird one! Happens in Acc 2007 too.

Change your expression to:
Expression is: [TotalDue]<CDbl(0.01)
Or:
Expression is: [TotalDue]<Val(0.01)
 

Users who are viewing this thread

Back
Top Bottom