Forum Discussion

Learner_SG's avatar
Learner_SG
Helper IV
4 years ago
Solved

Select 4 highest values at different Intervals

Hi , I have a requirement which asks me to select 4 highest time between the time interval of 7AM to 10 PM based on the water usage. 

Currently,it selects the 4 highest between these time ,But, It has to be in such a way that it is evenly distributed. 

So the plan that I have thought is to split the time into intervals of 7AM-11 AM, 12 PM-2 PM - 3-6PM ,7PM-10PM. 

I am not sure how to write it in the DAX. Any help?

 

 

  • Learner_SG , Create a column like

     

    =

    Var _time = timevalue([Datime])

    return

    Switch(True() ,

    _time >= Time(7,0,0) && _time < Time(12,0,0) , "7AM-11 AM" ,

    _time >= Time(12,0,0) && _time < Time(15,0,0) , "12 PM-2 PM" ,

    _time >= Time(15,0,0) && _time < Time(19,0,0) , "3-6PM " ,

    _time >= Time(19,0,0) && _time < Time(23,0,0) , "7PM-10PM" )

2 Replies

  • Learner_SG , Create a column like

     

    =

    Var _time = timevalue([Datime])

    return

    Switch(True() ,

    _time >= Time(7,0,0) && _time < Time(12,0,0) , "7AM-11 AM" ,

    _time >= Time(12,0,0) && _time < Time(15,0,0) , "12 PM-2 PM" ,

    _time >= Time(15,0,0) && _time < Time(19,0,0) , "3-6PM " ,

    _time >= Time(19,0,0) && _time < Time(23,0,0) , "7PM-10PM" )

  • amitchandak ,thanks for the help. I am trying to select the highest values using the filter but it selects all the values during that time frame.how to correct it? could help?

     

    because similarly I need to select all the 4 timeframes and show those times in the table which would be my result. now trying to get for at least 1 time frame correctly.