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,
I have a table that holds project operations. I have another table which has the timebooking of the employees for these project operations. I have a relationship between both tables.
Now I want to show the amount of days since the last time booking per project operation.
I created this measure: Days since last booking = DATEDIFF(TODAY(), LASTDATE(EmployeeTimeBooking[Date]), day)
The measure can be saved. However, when I start drawing it into my table, the table does not load anymore for one hour and afterwards I get an error message saying "not enough resources".
BTW, I am using Direct Query.
Can someone help me here?
Thanks, Christian
Hi, thanks for your answers.
Unfortunately, with both formulas, I am running into the same problem as with my formula. The wheel is turning and turning...No result
Do you have any other idea?
Thx, Christian
@_chris_ , if you need max date from the table try like
measure =
var _max = maxx(allselected(EmployeeTimeBooking), EmployeeTimeBooking[Date])
return
DATEDIFF(TODAY(), _max , day)
or try like
DATEDIFF(TODAY(), max(EmployeeTimeBooking[Date]), day)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |