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
sayali_deshmukh
Helper III
Helper III

Calculated Column for previous date values

Hi,

Have a table as per below - 

Capture.PNG

Need help for calculating yesterday's actual and day before yesterday's actual using DAX.

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@sayali_deshmukh 

You can create measure like with date calendar

Day behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Day))

2 Day behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-2,Day))

View solution in original post

Hi @sayali_deshmukh,

 

Would you please refer to the following calculated column:

Yesterday's Update = CALCULATE(MAX('Table'[Today's Update]),ALL('Table'),'Table'[Task] = EARLIER('Table'[Task]),'Table'[Date] = EARLIER('Table'[Date])-1)



Day Before Yesterday's Update = CALCULATE(MAX('Table'[Today's Update]),ALL('Table'),'Table'[Task] = EARLIER('Table'[Task]),'Table'[Date] = EARLIER('Table'[Date])-2)

Best Regards,

Dedmon Dai

View solution in original post

6 REPLIES 6
amitchandak
Super User
Super User

@sayali_deshmukh 

You can create measure like with date calendar

Day behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Day))

2 Day behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-2,Day))

Hi @amitchandak 

Thanks for your help.

Could you suggest a way for text inputs as well ?

 

Capture2.PNG

Hi @sayali_deshmukh,

 

Would you please refer to the following calculated column:

Yesterday's Update = CALCULATE(MAX('Table'[Today's Update]),ALL('Table'),'Table'[Task] = EARLIER('Table'[Task]),'Table'[Date] = EARLIER('Table'[Date])-1)



Day Before Yesterday's Update = CALCULATE(MAX('Table'[Today's Update]),ALL('Table'),'Table'[Task] = EARLIER('Table'[Task]),'Table'[Date] = EARLIER('Table'[Date])-2)

Best Regards,

Dedmon Dai

Hi @v-deddai1-msft 

Is there any way to extend this solution to calculate previous dates update continuously so that all updates can be gotten as -

Today's update, yesterday's update, day before yesterday's update and so on...

- without creating the columns 

Hi @v-deddai1-msft 

Thanks for your help.

I was able to get the columns as per your inputs.

For that prefer to have column like this

maxx(filter(table,table[task]=earlier(table[task]) && table[Date]=earlier(table[Date])-1),[Todays Plan])

 

Or try the same formula(provided in last update) with Max function and text column

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.