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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
JustinDoh1
Post Prodigy
Post Prodigy

Convert hour as 12:00 AM (hour with AM/PM)

I am sharing my Pbix file here.

 

I am trying to convert from datetime like

2/23/2020 10:08:00 AM  to  10:00 AM.

 

The reason is that I am trying to create visual like this:

JustinDoh1_0-1631577391233.png

 

I have a column called "IncidentDate".

I was able to convert the DateTime to Hour like this:

JustinDoh1_1-1631577560568.png

But, what I am trying to get as a final product is like:

10:00 AM

8:00 AM

3:00 PM

 

How do I go about doing this?

 

Thanks.

 

 

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@JustinDoh1 Well, one way would be to create a new column like this:

Column = IF([Hour]<=12,[Hour] & ":00 AM", ([Hour]-12) & ":00 PM")


Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

@JustinDoh1 Well, one way would be to create a new column like this:

Column = IF([Hour]<=12,[Hour] & ":00 AM", ([Hour]-12) & ":00 PM")


Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler  Thank you Greg again!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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