Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
benjaminhoang
Helper III
Helper III

Putting times into 4 different categorizes

Hello,

 

I am 2 collums with times the first time when someone enters and second time when someone leaves. I want to put third collumn that seperates the times into 4 categories for example 24-6, 6-12, 12-18, 18-24.

1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
Employee

Hi @benjaminhoang,

 

There are two time columns. Which one would like to calculate? Maybe this one?

 

Column =
SWITCH (
    TRUE (),
    [Entry Time] >= TIME ( 0, 0, 0 )
        && [Entry Time] <= TIME ( 6, 0, 0 ), "24-6",
    [Entry Time] > TIME ( 6, 0, 0 )
        && [Entry Time] <= TIME ( 12, 0, 0 ), "6-12",
    [Entry Time] > TIME ( 12, 0, 0 )
        && [Entry Time] <= TIME ( 18, 0, 0 ), "12-18",
    [Entry Time] > TIME ( 18, 0, 0 )
        && [Entry Time] <= TIME ( 23, 59, 59 ), "18-24",
    "error"
)

 

 

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

7 REPLIES 7
v-jiascu-msft
Employee
Employee

Hi @benjaminhoang,

 

Could you please mark the proper answers as solutions?

 

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jiascu-msft
Employee
Employee

Hi @benjaminhoang,

 

There are two time columns. Which one would like to calculate? Maybe this one?

 

Column =
SWITCH (
    TRUE (),
    [Entry Time] >= TIME ( 0, 0, 0 )
        && [Entry Time] <= TIME ( 6, 0, 0 ), "24-6",
    [Entry Time] > TIME ( 6, 0, 0 )
        && [Entry Time] <= TIME ( 12, 0, 0 ), "6-12",
    [Entry Time] > TIME ( 12, 0, 0 )
        && [Entry Time] <= TIME ( 18, 0, 0 ), "12-18",
    [Entry Time] > TIME ( 18, 0, 0 )
        && [Entry Time] <= TIME ( 23, 59, 59 ), "18-24",
    "error"
)

 

 

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

This looks like it is working but can you pelase break down the formula for me?

benjaminhoang
Helper III
Helper III

Capture.PNG

Greg_Deckler
Super User
Super User

Sample data would help. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

That being said, you should be able to do this with a SWITCH(TRUE()...) statement.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

I am novice what would that swithc(true()....) look like?

Not 100% certain of the requirements but it would look something like:

 

Measure =
VAR __hour = HOUR([Entry Time])
VAR __minute = MINUTE([Entry Time])
RETURN
SWITCH(TRUE(),
  __hour = 24 || __hour < 6 || (__hour = 6 && __minute = 0),"24-6",
  (__hour = 6 && __minute > 0) || __hour < 12 || (__hour = 12 && __minute = 0),"6-12",
etc.
)

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.