Forum Discussion
jaysoulz
Helper I
2 years agoUSERELATIONSHIP 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
Super User
2 years agojaysoulz , Try like
StopDateTime =
CALCULATE(CALCULATE(
MAX(DATA[StopDateTime]),USERELATIONSHIP(DATA[StopDate], 'Calendar'[Date]))
FILTER(
DATA,
HOUR(DATA[StopDateTime]) < 12
)
)
jaysoulz
Helper I
2 years agoIt does not seem to work:
Thanks for helping!