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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
svishwanathan
Helper III
Helper III

Help with getting value for previous period dax

Hello


I want to create a calculated column in my report.

I want that on any given row I should get the sum of sales from previous period. There are two conditions:

job id must match. the periods are not sequential so the row may contain data for november for the given id and the previous record for that job is in june

 

I am unable to sort the months with Job id.

 

Job id                 Month               Relative Month(from Jan2018)   Sales        Calculated Column

1                  November 2017        -2                                               4k                    8k

 

1                   June 2017                  -6                                              6k 

1                    August 2017              -4                                              8k                   6k

 

This helper column can help me to lookup the sales for that period and then I can compute how much the sales have increased or decreased since the last period

 

My issues: periods are not sequential....there are gaps (not necessarily selcted month-1)

I need to make sure ids match

 

I am unable to sort my months 

 

 

Regards
Swati

 

1 ACCEPTED SOLUTION

Hi,

 

Try this

 

=LOOKUPVALUE(Data[Sales],Data[Month],CALCULATE(MAX(Data[Month]),FILTER(Data,Data[Job ID]=EARLIER(Data[Job ID])&&Data[Month]<EARLIER(Data[Month]))),Data[Job ID],Data[Job ID])

 

Does this work?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

9 REPLIES 9
Ashish_Mathur
Super User
Super User

Hi,

 

Here is the calculated column formula i have used

 

=LOOKUPVALUE(Data[Sales],Data[Month],CALCULATE(MAX(Data[Month]),FILTER(Data,Data[Job ID]=EARLIER(Data[Job ID])&&Data[Month]<EARLIER(Data[Month]))))

 

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Ashish 

 

Thanks...I think the code breaks because for other job ids, the dates repeat.

 

For instance, say there are more records

 

ID   Month

2     01_nov-2017   

2       01-Aug-2017

Hi,

 

Try this

 

=LOOKUPVALUE(Data[Sales],Data[Month],CALCULATE(MAX(Data[Month]),FILTER(Data,Data[Job ID]=EARLIER(Data[Job ID])&&Data[Month]<EARLIER(Data[Month]))),Data[Job ID],Data[Job ID])

 

Does this work?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

LIFE SAVER, spent 3 hours trying to work this out

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Thanks it works well

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Phil_Seamark
Employee
Employee

Hi @svishwanathan

 

Is your Month column a date time column, or is it Text?  

 

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Hello

 

I would like to use my relative month column as the identifier...I can bring in the month as date but currently the month is identified by the relative value 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors