March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello everyone,
I'd like to ask you about a little problem I'm having with Power Bi.
I want to create a dynamic graph with the following inputs: dates (x-axis) and sliding performance (y-axis) calculated via a measure.
My problem is with the measure. Using the latter, I want to calculate the performance of an index between 2 dates that can be modified.
The first performance data (the one with the earliest date in relation to the dates selected via the slicer) must always be 100. The other data are calculated as follows (see calculation below and photo of calculation):
(Today's price) / (Last working day's price) * (Last working day's performance)
The problem is that I don't know how to do this using a measure. Does anyone have a solution or any ideas I can explore?
Below are screenshots of what I want to display and the data I'm using.
Thanks in advance for your help 🙂
Solved! Go to Solution.
If it fits your needs try this for your model:
Performance =
VAR _MIN =
CALCULATE(
MIN('Calendar'[Date]),
ALLSELECTED('Calendar'[Date]) )
VAR _MAX =
CALCULATE(
MAX('Calendar'[Date]),
ALLSELECTED('Calendar'[Date]) )
VAR _MIN_Value = CALCULATE(
[SUM Course],
'Calendar'[Date] = _MIN)
VAR _MAX_Value = CALCULATE(
[SUM Course],
'Calendar'[Date] = _MAX)
VAR _DIVIDE = DIVIDE([SUM Course], _MIN_Value) * 100
RETURN
IF(
HASONEVALUE('Calendar'[Date]),
_DIVIDE)
So you have the smalest date selected by a slicer = Date de debut?
And then you want compare another (random) date selected by a slicer to this earliest date = Date de fin?
Did I get it right?
How do you select these dates?
Hi Sergej,
You can see (with the screen on my comment) the date selector I use on Power Bi.
Ah ok,
so it is a simple date slicer with a slider.
So you define MIN and MAX dates for your purpose.
Right?
Yes exactly
Hey @Adrien_86 ,
sthg like this?
After change your MIN Date using a slicer it will look like this:
New reference value is then your new MIN Date selected.
That´s what you wanted to see?
Line Chart:
If it fits your needs try this for your model:
Performance =
VAR _MIN =
CALCULATE(
MIN('Calendar'[Date]),
ALLSELECTED('Calendar'[Date]) )
VAR _MAX =
CALCULATE(
MAX('Calendar'[Date]),
ALLSELECTED('Calendar'[Date]) )
VAR _MIN_Value = CALCULATE(
[SUM Course],
'Calendar'[Date] = _MIN)
VAR _MAX_Value = CALCULATE(
[SUM Course],
'Calendar'[Date] = _MAX)
VAR _DIVIDE = DIVIDE([SUM Course], _MIN_Value) * 100
RETURN
IF(
HASONEVALUE('Calendar'[Date]),
_DIVIDE)
Yes this is exactly what I'm looking for ! thank you so much !!!
You are welcome.
Have a nice weekend.
Thanks ! Have a nice weekend
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |