I'm trying to make a KPI show the amount of cases for the latest month, however the below expression returns a count of unique_id for the current selection instead. Can anyone tell me what I'm doing wrong?
Count({1<YEAR_MONTH={"=Max(YEAR_MONTH)"}>} UNIQUE_ID)
Thank you.
Add {1} to the set modifier's Max() function also...
Also, do you may be also need a dollar sign expansion here?
Count({1<YEAR_MONTH={"$(=Max({1}YEAR_MONTH))"}>} UNIQUE_ID)
Add {1} to the set modifier's Max() function also...
Also, do you may be also need a dollar sign expansion here?
Count({1<YEAR_MONTH={"$(=Max({1}YEAR_MONTH))"}>} UNIQUE_ID)
Thank you!
It works exactly the way I wanted.