Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
In one slicer there is year and in another slicer there is month
In matrix there is budget and Actuals
I have selected Apr and May alone from month slicers
In the below matrix, I get the value for April and May.
I need another value as Average out based on selection
Let's say in Actuals 20 and 30 respectively. I need average out as (20+30)/2 = 25. If I selected 3 months then all 3 to sum and divide by 3.
Kindly help me out with DAX formula
Hi @msk_muthu
you can activate the total column and replace the Actual measure in the matrix with the following
Actual with Average =
AVERAGEX ( VALUES ( 'Table'[Month] ), [Actual] )
the average will be displayed at the total column (you can rename it)
do the same for Budget
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
18 | |
7 | |
7 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |