Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'm trying to figure out if it is possible to create a measure for the total sales in the selected month, disregarding all other selection.
I have tried te following: SUM( {1<month = {$}>} Sales)
But this doesn't work. Any ideas?
Kind regards,
Daniel
Hi,
Try:
SUM( {1<month = {$(=Concat(month,','))}>} Sales)
Stephen
Thanks!