Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi everyone,
I've got a table that contains the price list of some products that my company buys from a certain supplier:
For each item there are the start date and the end date of the price shown in the line (31/12/2099 means the the price is currently valid).
My goal is to find out if there are any gaps between dates, so I need to calculate, for each item, the difference between the ValidityEndingDate and the next ValidityStartingDate:
Here is the PBIX file: https://www.dropbox.com/s/3q2rldzekcbjsh3/Days%20between%20dates.pbix?dl=0
I hope it's all clear. Thank you.
Solved! Go to Solution.
A calculated column in DAX:
ColumnZ = var _item = 'Table'[Item]
var _endDate = 'Table'[ValidityEndingDate]
RETURN
CALCULATE(MIN('Table'[ValidityStartingDate]), FILTER('Table', 'Table'[Item] = _item && 'Table'[ValidityStartingDate] > _endDate))
You can then use DATEDIFF in another column to get the days between the column and the ending date.
I haven't really tested it so please do that.
A calculated column in DAX:
ColumnZ = var _item = 'Table'[Item]
var _endDate = 'Table'[ValidityEndingDate]
RETURN
CALCULATE(MIN('Table'[ValidityStartingDate]), FILTER('Table', 'Table'[Item] = _item && 'Table'[ValidityStartingDate] > _endDate))
You can then use DATEDIFF in another column to get the days between the column and the ending date.
I haven't really tested it so please do that.
That's great @HotChilli ! I've created this column:
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.