Hi Community,
I have a question :
I'd like to use LIKE operator in CALC_THROUGHPUT function like this.
---
FILTER (CALC_THROUGHPUT(LAST_OCCURRENCE[LIKE 'A_%']
TO FIRST_OCCURRENCE[LIKE 'B_%'],
REMAP_TIMESTAMPS("TABLE"."TIME_STAMP", DAYS)
)) <= 7 /* only within 7 days duration.*/
---
but this doesn't work and I found the page* that is similar to my question.
This page is helpful, but in my case, the first half
of the first argument(LAST_OCCURRENCE[LIKE 'A_%']) requires LIKE operator as well.
Please let me know if you have any ideas.
Thanks.