The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
11 | |
10 | |
10 | |
9 |