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 dateJoin 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
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
22 | |
11 | |
10 | |
10 | |
8 |