Page 1 of 1

Date Picker Range for Report

Posted: Thu Nov 28, 2024 11:28 am
by Joyfulness
Hello,

I am trying to add a date range picker to a report.

Could you advise how I could achieve this? I have attached a screenshot to this submission.

Can you advise if I have the setting correct to implement a date picker filter?

Could you please advise on the syntax required for the 'From' and 'To' expressions?
Screenshot 2024-11-28 at 11.18.30.png
Screenshot 2024-11-28 at 11.18.30.png (149.25 KiB) Viewed 5405 times

Re: Date Picker Range for Report

Posted: Thu Nov 28, 2024 2:37 pm
by Lech Kulikowski
Hello,

The type of the variable should be the DateTime, and the following expression in the filter:
DataSourceName.ColumnName >= VariableName.From && DataSourceName.ColumnName <= VariableName.To

Thank you.