I'm stuck on a workflow condition. We have a custom date field on our record. The logic is that if the custom date field is today or before today, then it goes to state 2. If the custom date field is after today, it would go to state 3 instead.
My current logic is on the transition and using a formula:
For transition to State 2: ROUND({today}-(customdatefield})<1
For transition to State 3: ROUND({today-{customdatefield})>=1
It keeps just going to state 2 no matter what. Does someone know how the formula should be written?