Forum Discussion
biswad
2 years agoAdvocate I
How to count unique Values in a duplicate rows
Hi Friends, I'm working on Power BI report and I have a table which contains list of Organisations and the roles within each of the organisation as below. I would like to count the "Total_Role" ...
DimaMD
2 years agoSolution Sage
biswad add ID to measure
= SUMX( SUMMARIZE('table','table'[Organistation],'table'[ID],'table'[Total_Role]),[Total_Role])
biswad
2 years agoAdvocate I
Thank you, this works, I think I have an issue with my data. but I got an idea how to achieve it through your helpful query.