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.
Hey Everyone,
I need your help.
I have a table with Recording details by month and I would like to see the difference based on slicer selection.
User has to select two Months in a slicer to compare the numbers.
Difference = Recordings (Later Month) - Recordings (Earlier month)
Table data looks like this:
Is there a way to make the measure dynamic so it follows the slicer selection?
Solved! Go to Solution.
@Anonymous There is if you unpivot those month columns so that you have:
Month, Value
March, 1200
April, 1500
...
You could then do this:
Difference Measure =
VAR __Min = MIN('Table'[Month])
VAR __Max = MAX('Table'[Month])
VAR __Month1 = MAXX(FILTER('Table',[Month] = __Min),[Recordings])
VAR __Month2 = MAXX(FILTER('Table',[Month] = __Max),[Recordings])
RETURN
__Month2 - __Month1
In reality, you will want a MonthSort column for Sort By and probably have to use that for your max/min, etc.
@Anonymous There is if you unpivot those month columns so that you have:
Month, Value
March, 1200
April, 1500
...
You could then do this:
Difference Measure =
VAR __Min = MIN('Table'[Month])
VAR __Max = MAX('Table'[Month])
VAR __Month1 = MAXX(FILTER('Table',[Month] = __Min),[Recordings])
VAR __Month2 = MAXX(FILTER('Table',[Month] = __Max),[Recordings])
RETURN
__Month2 - __Month1
In reality, you will want a MonthSort column for Sort By and probably have to use that for your max/min, etc.
Hi @Greg_Deckler ,
Really appreciate your help, that is definately best solution.
But what if I change the data little bit as below:
Can you pls help with this too @Greg_Deckler ?
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
9 | |
7 |