Forum Discussion
jaysoulz
2 years agoHelper I
USERELATIONSHIP with FILTER
Hi, I am trying to display the correct timing from my worker and I am having the issue where I need two dates (one for Start Time ; Stop Time). Calendar [Date] is linked to DATA [StartDate] (ac...
Daniel29195
2 years agoCommunity Champion
StopDateTime =
CALCULATE(
MAX(DATA[StopDateTime]),
FILTER(
all(DATA),
HOUR(DATA[StopDateTime]) < 12
),
USERELATIONSHIP(DATA[StopDate], 'Calendar'[Date])
)
let me know if this works for you .
jaysoulz
2 years agoHelper I
Nope. All results are 2023-12-31 11:56:51AM. The result date doesnt match the Punch Out date...