Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi experts,
I have a scenario where I want a filter selection to apply on a table measure based on a set analysis like this -
measure = Sum({$<PRODUCT_NAME = {$(vMarket1)}>} TRX)
The filter selection is on PRODUCT_NAME. Above measure is ignoring the filter selection on PRODUCT_NAME as it has been used inside set analysis expression. Could you please suggest a work around this ? Thanks!
= Sum({$<PRODUCT_NAME = {'vMarket1'}>} TRX)
May be this:
Sum({$<PRODUCT_NAME *= {$(vMarket1)}>} TRX)
Hi Ishtdeep, vMarket is a variable so I am not sure how removing $ expansion would help.
Thanks Sunny. That worked. Could you please help understand how adding an asterisk after field name made it abide the filter selection.
Is there any documentation around this which could help. Thanks!
Yes, there is... check here
Thank You Sunny!