Forum Discussion
Date and Time Filters
- 3 years ago
amandabus21 Meant to be used in the Filters pane actually. The intent was to slice using your TimeTable. However, you may need two time tables, one to set a min and one to set a max. And, if you need to go from one day to the next (PM -> AM) then you will probably need to tweak the measure selector accordingly.
Greg_Deckler do i make the TimeTable as a column or a measure?
amandabus21 As a table. In Report view in the Desktop, choose the Modeling tab and then New table and paste in that formula.
- amandabus213 years ago
Helper V
Hi Greg, thanks for your help. Greg_Deckler
I was able to create the table but now when I create the measure I am getting a syntax error.
- Greg_Deckler3 years ago
Community Champion
amandabus21 Whoops, missed a comma after the first SWITCH condition:
Time Selector Measure = VAR __Opened = MAX('Table'[Date Opened]) VAR __MaxTime = MAX('TimeTable'[Hour]) VAR __MinTime = MIN('TimeTable'[Hour]) VAR __Time = __Opened - TRUNC(__Opened) RETURN SWITCH(TRUE(), __Time >= __MaxTime, 1, __Time <= __MinTime && __Time >= 0, 1, 0 )- amandabus213 years ago
Helper V
Greg_Deckler thank you.
Now how can I use that measure to filter the time between 6PM - 7AM?
Should I make a new column or is it supposed to be used a slicer?