Forum Discussion
Janaki_Sankaran
2 years agoFrequent Visitor
DAX Query in Query Designer - How to make DISTINCT column
Hi, I have a table called Store_DIM which has Region, District, Store columns. In the Power BI Report Builder while creating the dataset in the Query Designer, I dragged the Region column, that was ...
AnalyticPulse
2 years agoSolution Sage
you can use below dax to get distinct values.
EVALUATE
DISTINCT(
SUMMARIZE(
'V_STORE_DIM',
'V_STORE_DIM'[Region],
'V_STORE_DIM'[District]
)
)
mark this reply as answer is this resolves your issue.
If this helped, Follow this blog for more insightful information about data analytics:
https://analyticpulse.blogspot.com/2024/03/superstore-sales-2022-vs-2023-year-on.html
https://analyticpulse.blogspot.com/
Please Subscribe AnalyticPulse on YouTube for future updates:
https://www.youtube.com/@AnalyticPulse
Please subscribe CogniJourney On Youtube For Daily fun facts:
https://www.youtube.com/@CogniJourney
Janaki_Sankaran
2 years agoFrequent Visitor
- AnalyticPulse2 years agoSolution Sage
thats strange i checked it with my table before post reply.