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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
vandam2
Frequent Visitor

Question about creating a new column based on Shift Time

I have a column in PowerQuery listing the hours in the day (1-24)

i would like to add a column that has three shifts based on  hours in day ,

1. Hours between 0-8 would be 'Night'

2. Hours between 8-15 would be 'Day'

3. Hours between 15 and 24 would be 'Evening'

 

not sure how to build a custom colum with the if statement to solve this issue

 

thank you 

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Use following formula

if [Hours] <= 8 then "Night" else if [Hours] <= 15 then "Day" else "Evening"

View solution in original post

1 REPLY 1
Vijay_A_Verma
Super User
Super User

Use following formula

if [Hours] <= 8 then "Night" else if [Hours] <= 15 then "Day" else "Evening"

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Top Solution Authors