Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, i have another problem where in one dimension, let say status got 5 values which is Paid, Pending, Inforce, Cancelled and Terminated. But i just want to show Paid and Pending in the pivot table. How do i do this ya? Because when i select status as dimension, it will show all five status.
Please help me. Thank you!!
If you wanted to limited the values by only using the dimension field, you could use:
aggr(Only({$<Status={'Paid','Pending'}>} Status),Status)
Or, if you have a measure, just add {$<Status={'Paid','Pending'}>} as set analysis.
If you wanted to limited the values by only using the dimension field, you could use:
aggr(Only({$<Status={'Paid','Pending'}>} Status),Status)
Or, if you have a measure, just add {$<Status={'Paid','Pending'}>} as set analysis.
It works! Thank you 🙂