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
I am trying to calculate the hours worked per month for every employee. This is based on a Sharepoint list. Their usernames go into the title column, then the ActivityType column details what they did (Check In, Lunch Out, Lunch In, Check Out) and ActivityDateTime details the exact time they did such activity. Is there any way I can calculate the time between Check In and Check Out within the same column? If I create a column for each activity type I'll have to redo the entire Canvas App that I have for time tracking that uses this list as data source.
Solved! Go to Solution.
Hi @vinidegrandi ,
Try below formula:
time_diff =
var Check_In = calculate(max([activitydatetime]), filter(yourtable,[activitytype]=earlier([activitytype])-1))
Return
datediff(Check_In,[activitydatetime],HOUR)
@vinidegrandi
Your ActiveType is a "Text" type. Please change its type to "Number" then you could use the DAX above.
Best Regards.
Hi @vinidegrandi ,
Try below formula:
time_diff =
var Check_In = calculate(max([activitydatetime]), filter(yourtable,[activitytype]=earlier([activitytype])-1))
Return
datediff(Check_In,[activitydatetime],HOUR)
Its displaying an error saying that the DAX comparison does not offer support for a comparison between a number and a text. Its suggesting using VALUE or FORMAT.
@vinidegrandi
Your ActiveType is a "Text" type. Please change its type to "Number" then you could use the DAX above.
Best Regards.
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 |