This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I want to display different value on each drill down level. It means that I want to display sum value on First level and on second level I want to display the average value. Is It possible to display this in Power BI? If it is then How can I do this?
Please Help me!
Thanks
Solved! Go to Solution.
@Krunalbpatel You can try something like this
This is the table I create
FirstLevel DrillLevel Amount A C 5 A D 5 A C 5 B F 5 B F 5 B E 5
and the formula is
ChangeInDrillDown =
VAR AverageCalc = AVERAGE(TableName[Amount])
VAR SumCalc = SUM(TableName[Amount])
RETURN
IF(ISFILTERED(TableName[DrillLevel]);SumCalc;AverageCalc)
Result
@Krunalbpatel You can try something like this
This is the table I create
FirstLevel DrillLevel Amount A C 5 A D 5 A C 5 B F 5 B F 5 B E 5
and the formula is
ChangeInDrillDown =
VAR AverageCalc = AVERAGE(TableName[Amount])
VAR SumCalc = SUM(TableName[Amount])
RETURN
IF(ISFILTERED(TableName[DrillLevel]);SumCalc;AverageCalc)
Result
@Krunalbpatel what you can do is display sum and average side by side and as you drill down you see them both.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 10 | |
| 8 | |
| 7 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 24 | |
| 23 | |
| 21 | |
| 19 | |
| 16 |