Forum Discussion
Baskar
9 years agoResident Rockstar
Need Help in DAX
Hi Thanks Advanced,
The Screen in my input .
Expected result is
Sep-16 - India - Airoli - 10
Oct-16 - India - Airoli - 20
How can i do with Dax ?
am clueless !!!
Greg_Deckler ankitpatira Anonymousv-haibl-msft
3 Replies
- AnonymousNot applicable
Hi baskar,
do you want augmented result of all 4 columns in one single column with "-" as separator ??
Regards
- BaskarResident Rockstar
No, I want distinct. I mention as output rows
- v-ljerr-msftMicrosoft Employee
In this scenario, using DISTINCT function should meet you requirement. See my sample below.
I assume you have a table called MyTestTable like below.
Then you should be able to use the formula below to create a new calculate table MyDistinctTable contains distinct values from MyTestTable.
MyDistinctTable = DISTINCT ( MyTestTable )
Regards