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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
is there any way i can create Percentage withn Percentage for e.g
Group Percentage
Teacher 5%
Engineer 90%
Programmer 5%
if i selected teacher i will show the percentage based on Group Percentage
Subgroup Percentage
Math Teacher 3%
English Teacher 1.5%
Science Teacher 1.5%
I used this first formula in Group
% Value = DIVIDE(SUM(Value),CALCULATE(SUM(Value]),ALL(Group)))
Solved! Go to Solution.
According to your description, you want to calculate the percentage of parent when drilling down to child level. Right?
In this scenario, you have to specify different column as filter in CALCULATE(). It can be like:
% Value =
IF (
HASONEVALUE ( Table[SubGroup] ),
DIVIDE (
SUM ( Tble[Value] ),
CALCULATE ( SUM ( Table[Value] ), ALL ( Table[SubGroup] ) )
),
DIVIDE (
SUM ( Tble[Value] ),
CALCULATE ( SUM ( Table[Value] ), ALL ( Table[Group] ) )
)
)
Please refer to article below:
PowerPivot: Calculate ratio to parent
Regards,
According to your description, you want to calculate the percentage of parent when drilling down to child level. Right?
In this scenario, you have to specify different column as filter in CALCULATE(). It can be like:
% Value =
IF (
HASONEVALUE ( Table[SubGroup] ),
DIVIDE (
SUM ( Tble[Value] ),
CALCULATE ( SUM ( Table[Value] ), ALL ( Table[SubGroup] ) )
),
DIVIDE (
SUM ( Tble[Value] ),
CALCULATE ( SUM ( Table[Value] ), ALL ( Table[Group] ) )
)
)
Please refer to article below:
PowerPivot: Calculate ratio to parent
Regards,
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 67 | |
| 62 |