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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
aymantm
Helper I
Helper I

Subtract dates in the same column and return zero in case of the identical date values

Hello all,

I was looking for a way to create a calculated column that auto calculate the duration between dates in a date column called orderdate, with a filter of another column let's call it Product.

I composed the following expression:

ByAymanProductFlowDays =
var currentproduct=Sales[ProductName]
var previousdate=MAXX(FILTER(Sales,Sales[ProductName]=currentproduct&&Sales[OrderDate]<EARLIER(Sales[OrderDate])),Sales[OrderDate])
var result=IF(ISBLANK(previousdate),0,Sales[OrderDate]-previousdate)
return result
 
When using this expression on adventureworks data I got the results as shown in the following image
 
byaymanproductflowdays.jpg

 

In the small red circle there are two consecutive values of 1. My goal is to subtract the dates in the red column
so because the relevant dates are identical the yellow highlited value should be zero.
How to fix the DAX expression or rewrite it to meet my goals?
Than you all
Ayman
4 REPLIES 4
mahoneypat
Microsoft Employee
Microsoft Employee

Your previousdate variable has only a < EARLIER.  Change that to <=.

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


@mahoneypatI tried this before. it returns all the column into zeros.

lbendlin
Super User
Super User

Do you have an index column?  How do you sort the rows?

I sorted the table manually.

No index column. I prefer if the solution is not based on extra columns

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.