Forum Discussion
rar4010
9 years agoFrequent Visitor
Description column on slicer?
Hi Folks, I have a slicer to select AccountID for some budget analysis, but it only displays the AccountID. It would be more useful if the dropdown would also display the AccountDescription so the u...
- 9 years ago
Hi rar4010,
If I understand you correctly, you can add a calculate column to combine AccountID and AccountDescription, then use the combined column as Slicer on the report in this scenario. The formula below to create the calculate column if for your reference. :smileyhappy:
Account ID and Description = 'Table1'[AccountID] & "-" & 'Table1'[AccountDescription]
Regards
v-ljerr-msft
9 years agoMicrosoft Employee
Hi rar4010,
If I understand you correctly, you can add a calculate column to combine AccountID and AccountDescription, then use the combined column as Slicer on the report in this scenario. The formula below to create the calculate column if for your reference. :smileyhappy:
Account ID and Description = 'Table1'[AccountID] & "-" & 'Table1'[AccountDescription]
Regards
rar4010
9 years agoFrequent Visitor
v-ljeer-msft; Brilliant and simple...not sure why that didn't occur to me. Thanks so much!
- v-ljerr-msft9 years agoMicrosoft Employee
Hi rar4010,
Great to hear the problem got resolved. Could you accept my reply above as solution to close this thread? :smileyhappy:
Regards
- rar40109 years agoFrequent VisitorI had tried to Accept the solution yesterday but there was a java script issue...works today! Thanks again.