Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi, I would like to find a way to visualize the percentage of each category from a column called Status, but I would like to use another column called ID as a reference for the total count of them (making sure there is a distinct count in the total of ID values) as the rows contain duplicates.
Both columns look like this:
Status ID
Approved M1
Approved M1
Rejected E2
Initiated F3
Initiated P6
Pending L4
Pending L4
Approved X9
Approved X9
Approved T8
Thanks for your help!
Solved! Go to Solution.
Hi,
Please check the below picturea and the attached pbix file.
Percentage measure: =
DIVIDE (
    DISTINCTCOUNT ( Data[ID] ),
    CALCULATE ( DISTINCTCOUNT ( Data[ID] ), REMOVEFILTERS () )
)
					
				
			
			
				Hi,
Please check the below picturea and the attached pbix file.
Percentage measure: =
DIVIDE (
    DISTINCTCOUNT ( Data[ID] ),
    CALCULATE ( DISTINCTCOUNT ( Data[ID] ), REMOVEFILTERS () )
)
					
				
			
			
				Thanks a lot! it works perfect!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
            | User | Count | 
|---|---|
| 8 | |
| 5 | |
| 5 | |
| 4 | |
| 3 | 
| User | Count | 
|---|---|
| 24 | |
| 11 | |
| 10 | |
| 9 | |
| 8 |