Forum Discussion
Anonymous
7 years agoNot applicable
RE: current selections
Hi All, is there anyway to see all current selections done by user? for example i have year filed ,month,product,...... in each filed i have selected some values. how user know the...
- 7 years ago
Anonymous
I think it will be easier if you create 7 different measures instead of putting all the code directly in one.
Once you've done that you can put each of them in a card visual or, if you prefer, you can create another measure that aggregates all the others:
TotalMeasure = [ShowSlicerContents1] & UNICHAR(10) & [ShowSlicerContents2] & UNICHAR(10) & //Continue here with the other measures... [ShowSlicerContents7]The UNICHAR(10) is for a new line
AlB
7 years agoCommunity Champion
Anonymous
I think it will be easier if you create 7 different measures instead of putting all the code directly in one.
Once you've done that you can put each of them in a card visual or, if you prefer, you can create another measure that aggregates all the others:
TotalMeasure = [ShowSlicerContents1] & UNICHAR(10) &
[ShowSlicerContents2] & UNICHAR(10) &
//Continue here with the other measures...
[ShowSlicerContents7]
The UNICHAR(10) is for a new line
Anonymous
7 years agoNot applicable
Ok understood. thanks alot for your steps.
i will try and update you with solutions :)
Best
Chanty