Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
ScottPat
Frequent Visitor

Measure to divide each data point by the earliest visible data point

Probably an easy one for someone out there.

 

I have some time series data and I want a measure where it forces the result to be 1 on the first time shown in the graph.

 

So basically it would show the value of the items divided by the first date visible in the report. And when I change the slider to show other dates it changes the value it is dividing by to the one for that start date.

 

I was using this formula in a column - but this just refers to the first EVER date as opposed to the first visible one.  

 

LME N = [LME]/calculate(average([LME]) ,filter('Copper',[Date]= min([Date])))

 

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@ScottPat , Try like

 

LME N =
var _min = minx(allselected('Copper'), [Date])
return

[LME]/calculate(average([LME]) ,filter('Copper',[Date]= _min))


prefer a date table joined with date of your table


LME N =
var _min = minx(allselected('Date'), [Date])
return

[LME]/calculate(average([LME]) ,filter('Date',Date[Date]= _min))

 

Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

5 REPLIES 5
ScottPat
Frequent Visitor

Now I get " the value for 'LME' cannot be determined."

 

I guess this is about row context but not sure how to fix - i ofcourse want the LME value to use each time periods value.

@ScottPat , My mistake LME is a measure

 

LME N =
var _min = minx(allselected('Copper'), [Date])
return

divide([LME], calculate(averagex(Values('Copper'[Date]), [LME]) ,filter('Copper',[Date]= _min)) )

 

or

 

LME N =
var _min = minx(allselected('Copper'), [Date])
return

divide([LME], calculate(averagex('Copper', [LME]) ,filter('Copper',[Date]= _min)) )

 

or use a avg measure

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

No LME is a column not a measure (with the sigma / Sum icon) - so it still doesn't seem quite right in my context.

OK I see what i needed, I had a filter context I needed to remove with

all()
amitchandak
Super User
Super User

@ScottPat , Try like

 

LME N =
var _min = minx(allselected('Copper'), [Date])
return

[LME]/calculate(average([LME]) ,filter('Copper',[Date]= _min))


prefer a date table joined with date of your table


LME N =
var _min = minx(allselected('Date'), [Date])
return

[LME]/calculate(average([LME]) ,filter('Date',Date[Date]= _min))

 

Why Time Intelligence Fails - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.