March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
106 | |
98 | |
65 | |
54 |