Hello guys,
I am struggling to find a solution, the situation is as following
There is a Date slicer where users can select a certain Date range, for example 31-12-2019 to 27-01-2021.
Every date there is a value "Value". Now, I want to calculate the percentage difference with the earliest value available in this date range (in this case on the 31-12-2019) and visualize the difference over time in a line chart. So the chart would always start at an index of 100, because the value is the same as the earliest value available.
The following hard coded example works:
Solved! Go to Solution.
Please try this measure to get your desired chart.
Test 3 =
VAR vMinDate =
MINX (
ALLSELECTED ( 'Calendar'[Date] ),
'Calendar'[Date]
)
VAR vMinValue =
CALCULATE (
SUM ( Facts[Value] ),
'Calendar'[Date] = vMinDate
)
RETURN
DIVIDE (
SUM ( Facts[Value] ),
vMinValue
)
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Please try this measure to get your desired chart.
Test 3 =
VAR vMinDate =
MINX (
ALLSELECTED ( 'Calendar'[Date] ),
'Calendar'[Date]
)
VAR vMinValue =
CALCULATE (
SUM ( Facts[Value] ),
'Calendar'[Date] = vMinDate
)
RETURN
DIVIDE (
SUM ( Facts[Value] ),
vMinValue
)
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Awesome, much appreciated!
@sandeo ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Proud to be a Super User!
I created a sample .pbix file with just a few records and I have the same problem...
Check out new user group experience and if you are a leader please create your group
100+ sessions, 100+ speakers, Product managers, MVPs, and experts. All about Power BI. Attend online or watch the recordings.
User | Count |
---|---|
388 | |
216 | |
84 | |
72 | |
69 |
User | Count |
---|---|
447 | |
247 | |
136 | |
82 | |
78 |