Forum Discussion
biswad
Advocate I
2 years agoHow 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
Solution Sage
2 years agobiswad add ID to measure
= SUMX( SUMMARIZE('table','table'[Organistation],'table'[ID],'table'[Total_Role]),[Total_Role])
biswad
Advocate I
2 years agoThank 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.