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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
_chris_
Helper III
Helper III

Help with simple measure needed

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

2 REPLIES 2
_chris_
Helper III
Helper III

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

amitchandak
Super User
Super User

@_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)

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

Check out the October 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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