Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys ,
I want to show Q1 2021 and Q1 2020 count(request id) in KPI, How to write expression.
Please help me,
Thanks in advance.
Regards,
Subba Reddy
Assuming you have date field, named [Date]. Try this.
Count({<[Date]={">=quarterstart('2021-01-01')<=quarterend('2021-01-01')"}>}RequestID)
This expression is assuming you have YYYY-MM-DD as default Date format, if not then you should adjust to your format.
You can adjust the hard codes dates with an dollar expansion or variable.