Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a requirement to show a Percentage by Name in Power BI. What I need is shown in Column named (Category Type 2%)
I have done below in excel not quite getting the same result in Power BI
Solved! Go to Solution.
Hi @shaikhzdandg
Please find the DAX
Category 2 % =
DIVIDE(
SUM('Table'[Total Rows]),
CALCULATE(SUM('Table'[Total Rows]),ALL('Table'[Name])),
0)
There are two rows with same AN name
Accept as Solution if resolved your question
Proud to be a Super User! | |
@shaikhzdandg You are welcome
Proud to be a Super User! | |
Hi @shaikhzdandg
Please find the DAX
Category 2 % =
DIVIDE(
SUM('Table'[Total Rows]),
CALCULATE(SUM('Table'[Total Rows]),ALL('Table'[Name])),
0)
There are two rows with same AN name
Accept as Solution if resolved your question
Proud to be a Super User! | |