Forum Discussion
vandam2
2 years agoFrequent 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...
- 2 years ago
Use following formula
if [Hours] <= 8 then "Night" else if [Hours] <= 15 then "Day" else "Evening"
Vijay_A_Verma
2 years agoMost Valuable Professional
Use following formula
if [Hours] <= 8 then "Night" else if [Hours] <= 15 then "Day" else "Evening"