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
askspepsi
Helper II
Helper II

Extract AM / PM from Datetime format in direct query

hi all,

 

Greetings,

 

Is the way to Extract AM or PM from Datetime format in direct query without changing to Import storage.

Or is there any another way to create another table or colume to extract time and convert to AM / PM

2 ACCEPTED SOLUTIONS
dax
Community Support
Community Support

Hi @askspepsi , 

You could try to refer to @Greg_Deckler 's measure, and change it  and apply this in table visual like below

Measure = IF(RIGHT(MAX('Table1'[date]) & "",2)=SELECTEDVALUE('Table'[time]), 1,0)

793.PNG

Best Regards,
Zoe Zhi

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

@askspepsi - OK, if I understand correctly use HOUR. If it is >= 12 it is PM otherwise AM

https://docs.microsoft.com/en-us/dax/hour-function-dax


@ 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...

View solution in original post

4 REPLIES 4
Greg_Deckler
Super User
Super User

@askspepsi Should be able to use DAX to parse that using RIGHT, like maybe:

 

Measure = RIGHT(MAX('Table'[Datetime]) & "",2)

@ 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...

@Greg_Deckler  thanks for the update.

 

iam really sorry i was not clear in the question i asked, let me rephrase again.

 

i have column name with datetime (see the below) and create AM / PM when i select AM the 06:00 and 5:50 only and when i select PM i what 17:58 and 17:59 

2020-07-23 17:58:57.000
2020-07-23 17:59:02.000
2020-07-23 06:00:37.000
2020-07-23 05:50:25.000

@askspepsi - OK, if I understand correctly use HOUR. If it is >= 12 it is PM otherwise AM

https://docs.microsoft.com/en-us/dax/hour-function-dax


@ 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...
dax
Community Support
Community Support

Hi @askspepsi , 

You could try to refer to @Greg_Deckler 's measure, and change it  and apply this in table visual like below

Measure = IF(RIGHT(MAX('Table1'[date]) & "",2)=SELECTEDVALUE('Table'[time]), 1,0)

793.PNG

Best Regards,
Zoe Zhi

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

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.