Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
7 | |
6 | |
5 |
User | Count |
---|---|
20 | |
11 | |
10 | |
9 | |
6 |