cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Raoom_A
New Member

how can i calculate minutes between two times.

Hello 

i would to ask how can i calculate minutes between two times.

here i try:

minnts = DATEDIFF('Table 1 (page)'[close],'Table 1 (page)'[open],MINUTE)
but there is problem in first rwo the result must be 10 min!
pic.png
 
1 ACCEPTED SOLUTION
grantsamborn
Solution Sage
Solution Sage

Hi @Raoom_A 

I'm unsure why you think your original measure didn't work.

Also, I'm unsure of how you can expect a result for the first 2 rows to both be equal to 10 minutes.

 

Out of curiosity, are your dates formatted as MM/DD/YYYY or DD/MM/YYYY ?    That would make a big difference.

 

View solution in original post

6 REPLIES 6
grantsamborn
Solution Sage
Solution Sage

Hi @Raoom_A 

I'm unsure why you think your original measure didn't work.

Also, I'm unsure of how you can expect a result for the first 2 rows to both be equal to 10 minutes.

 

Out of curiosity, are your dates formatted as MM/DD/YYYY or DD/MM/YYYY ?    That would make a big difference.

 

It is correct that I made a mistake in writing the date .. Thank you!

ppm1
Solution Sage
Solution Sage

Please try this expression.

 

= 24*60 - ('Table 1 (page)'[open] - INT('Table 1 (page)'[open]) - 'Table 1 (page)'[close] + INT('Table 1 (page)'[close]) )

Microsoft Employee

sorry it dose not work!

the result it pic pp.png

Greg_Deckler
Super User
Super User

@Raoom_A Try this:

Column = ([open] - TRUNC([open])) - ( [close] - TRUNC([close])) * 24 * 60

@ 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!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

do not work
Did not bring the expected output

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors