Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I am attempting to create a paginated report that I can schedule to run on the 1st of every month without always putting in the date parameters. I am attempting to use a filter expression:
'beginning of month
=DateSerial(Year(DateAdd("m", -1, Today())), Month(DateAdd("m", -1, Today())),1)
'End of month
=DateSerial(Year(DateAdd("m", -1, Today())),Month(DateAdd("m", -1, Today())), Day(DateAdd("d", -1, DateSerial(Year(Today()), Month(Today()), 1)) ) )
But get the followin Error: The processing of FilterExpression for the dataset 'Filtered' cannot be performed. Cannot compare data of types System.DateTimeOffset and System.DateTime. Please check the data type returned by the FilterExpression.
Any ideas what I can do to fix this?
Hi @officeiq ,
According to the error message, the problem is caused by data format differences,refer the following and check if it is helpful:
https://stackoverflow.com/questions/4331189/datetime-vs-datetimeoffset
Best Regards
Lucien
Any idea how I could resolve this issue?