DueTimeTable
I’m trying to assign a DueTimeBucket value to a list of times using the table I created above.
To assign a bucket to each time I run this DAX…
DueTimeBucket = CALCULATE(VALUES(DueTimeBucket[DueTimeBucket]),FILTER(DueTimeBucket,U_DIM_LM_QUIZ[ACDTDueTime]>=DueTimeBucket[Min] && U_DIM_LM_QUIZ[ACDTDueTime]<DueTimeBucket[Max]))
But get this error message….
“A table of multiple values was supplied where a single value was expected.”
The ACDTDueTime column has a time data type, as has the Min and Max columns in the DueTimeBucket table.
Can anyone see where I might be going wrong?
Thank you in advance.
DHB