
I checked the data for the date I filtered, and it has records. However, when I try to filter by parameter, nothing shows up.

I checked the data for the date I filtered, and it has records. However, when I try to filter by parameter, nothing shows up.
Best answer by lauraj46
Hi
The LastModifiedDateTime field includes a timestamp, whereas the Date parameter is only the date. That's why they will never be equal.
Your results may also be affected by time localization. DateTime fields are stored in Acumatica in UTC. To convert the Date parameter to UTC for comparison purposes you can use the formula: =[Date]-Now()+NowUTC()
Try these two two conditions in your GI:
ARPayment.LastModifiedDateTime >= [Date] - Now()+NowUTC()
ARPayment.LastModifiedDateTime < DateAdd([Date], 'd', 1) - Now()+NowUTC()
Hope this helps!
Laura
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.