Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
More equipment is listed in the equipment column, which I filter out to make sense of.
The result should be like this:
Solved! Go to Solution.
@aslam-ansari
My mistake again
End Date =
VAR CurrentDate = 'Table'[Start Date]
VAR CurrentEquipmentDates =
CALCULATETABLE (
VALUES ( 'Table'[Start Date] ),
ALLEXCEPT ( 'Table', 'Table'[Equipment] )
)
VAR NextDate =
MINX (
FILTER ( CurrentEquipmentDates, 'Table'[Start Date] > CurrentDate ),
'Table'[Start Date]
)
RETURN
IF ( NextDate = BLANK (), TODAY (), NextDate - 1 )
hai @tamerj1
Getting error.
My actual table looks like this.
In that scenario, take into account time. Some equipment status changes even occur on the same date. The end date in these circumstances should be the same date up to 3:11:06 PM, and thereafter it should be TODAY().
@aslam-ansari
Apologies, That was a typo mistake. I was typing on the phone so I miussed up. Please try
End Date =
VAR CurrentDate = 'Table'[Start Date]
VAR CurrentEquipmentDates =
CALCULATETABLE (
VALUES ( 'Table'[Start Date] ),
ALLEXCEPT ( 'Table', 'Table'[Equipment] )
)
VAR NextDate =
MAXX (
FILTER ( CurrentEquipmentDates, 'Table'[Start Date] > CurrentDate ),
'Table'[Start Date]
)
RETURN
IF ( NextDate = BLANK (), TODAY (), NextDate - 1 )
Thank you for the solution @tamerj1
Something missing in Dax!
After the first-row same-date return on all dates, the equation still needs to be changed. This only applies to one piece of equipment. Every piece of equipment has this issue.
@aslam-ansari
My mistake again
End Date =
VAR CurrentDate = 'Table'[Start Date]
VAR CurrentEquipmentDates =
CALCULATETABLE (
VALUES ( 'Table'[Start Date] ),
ALLEXCEPT ( 'Table', 'Table'[Equipment] )
)
VAR NextDate =
MINX (
FILTER ( CurrentEquipmentDates, 'Table'[Start Date] > CurrentDate ),
'Table'[Start Date]
)
RETURN
IF ( NextDate = BLANK (), TODAY (), NextDate - 1 )
please try
End Date =
VAR CurrentDate = 'Table'[Start Date]
VAR CurrentEquipmentDates =
CALCULATETABLE (
VALUES ( 'Table'[Start Date] ),
ALLEXCEPT ( 'Table', 'Table'[Equipment] )
)
VAR NextDate =
MAXX (
FILTER ( CurrentEquipmentDates, CurrentEquipmentDates > CurrentDate ),
CurrentEquipmentDates
)
RETURN
IF ( NextDate = BLANK (), TODAY (), NextDate - 1 )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 9 | |
| 8 | |
| 8 |