Forum Discussion
nwabramson
9 years agoAdvocate III
format distinct count
Is there a way to format the numeric result of an aggregation such as distinct count? I would like to add commas to my results and can't figure out how to display.
- 9 years ago
A way yo solve your problem is:
If is only one value to show you can use a Card Visual. (In formatting Options you can made the changes to show the ,)
or Create a a measure to made the Distinct Count
Carrier-DC=DistinctCount(Table[Carrier]) And Formatting this measure (In modeling)
Vvelarde
9 years agoCommunity Champion
A way yo solve your problem is:
If is only one value to show you can use a Card Visual. (In formatting Options you can made the changes to show the ,)
or Create a a measure to made the Distinct Count
Carrier-DC=DistinctCount(Table[Carrier]) And Formatting this measure (In modeling)
nwabramson
9 years agoAdvocate III
Thanks! That sounds like either way would solve my problem! Nancy.