Forum Discussion
RE: current selections
- 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
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
Thanks AlB for your guidance. i have implemented this working fine :)
i just modified code instead of applied filter.values i have given my field name :) by that user can know from which field the value selected.
created two seperate measures and final measure clubbed first two measures and added cascade object to the final measure :)
Best
Chanty