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...
amitchandak
2 years agoSuper User
jaysoulz , Try like
StopDateTime =
CALCULATE(CALCULATE(
MAX(DATA[StopDateTime]),USERELATIONSHIP(DATA[StopDate], 'Calendar'[Date]))
FILTER(
DATA,
HOUR(DATA[StopDateTime]) < 12
)
)
- jaysoulz2 years agoHelper I
It does not seem to work:
Thanks for helping!