- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Create Morning/Afternoon columns based on DateTime column
Hi,
I have a table with a datetime column called CREATEDDATETIME. I want to use it to create a new column where depending on the time it gets populated with Morning or Afternoon. Anything before 13:00 would be morning and anything after would be Afternoon. Is this possible and if so how do I do it?
Cheers
Paul
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Paul, you can use the HOUR function in an IF statement to calculate this.
Example:
MorningAfternoon = if((HOUR(TimeTable[CREATEDDATETIME]) <= 12), "Morning", "Afternoon")
Thanks,
Sam Lester (MSFT)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Paul, you can use the HOUR function in an IF statement to calculate this.
Example:
MorningAfternoon = if((HOUR(TimeTable[CREATEDDATETIME]) <= 12), "Morning", "Afternoon")
Thanks,
Sam Lester (MSFT)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This worked, thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @SamLester ,
I just have another follow up question regarding shift system that I'm trying to create in power bi and hope you have some solution.
In my case I need to create based on the day, for example if it's monday or tuesday etc., so in Excel I used Switch function as follows. I could do this by "IF" but it's going to be a very long formula so I was wondering if there's any better way.
SWITCH([@Day];"mon";LOOKUP([@Hour];{0;6;15};{"N";"FM";"EM"});"tue";LOOKUP([@Hour];{0;6;15};{"N";"FM";"EM"});"wed";LOOKUP([@Hour];{0;6;15};{"N";"FM";"EM"});"thu";LOOKUP([@Hour];{0;6;15};{"N";"FM";"EM"});"fri";LOOKUP([@Hour];{0;6;15};{"N";"FM";"N14"});"Sat";LOOKUP([@Hour];{0;5;18};{"N14";"D13";"N14"});"sun";LOOKUP([@Hour];{0;8;18};{"N14";"D13";"N"});"")
where N= night, FM= morning and EM= afternoon etc.
Thank you in advance,
/Kranthi

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
03-25-2024 10:29 PM | |||
07-01-2024 10:29 AM | |||
03-20-2024 01:56 AM | |||
Anonymous
| 11-15-2019 07:20 AM | ||
05-15-2024 11:29 AM |
User | Count |
---|---|
141 | |
115 | |
82 | |
63 | |
48 |