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 August 31st. Request your voucher.

Reply
170323003
Helper I
Helper I

Averages Times

GM!

 

So, I need to get the average response time of bookings by warehouse and by equipment.

 

 

 

 

.......

 

The dates are from different tables.

How can i do this? I know i'll need some formulas, but i cant reach them atm.

If you need more info tell me!

 

TY everyone 😄

7 REPLIES 7
harshnathani
Community Champion
Community Champion

Hi @170323003 ,

 

You need to share more information.

 

Sharing 2 columns with Date and Time will not help.

 

Try using DATEDIFF and then Average.

 

Regards,

Harsh Nathani

 

Ok, lets go:

 

 

 

 I want to know, in average, how many time do bookings take to be allocated.

 

The relations are

Bookings ---> Equipment ---> Reserve

 

I've tried something that is wrong i guess, because there's no direct relation between bookings and reserves:

(measure)

AvgResponseTime = AVERAGEX(Bookings, DATEDIFF(Bookings[Date], Reservas[ResponseDate],HOUR))
 
I'm hardstuck at this one, so if anyone can help me, i would appreciate 😄
Anonymous
Not applicable

// For this to work, you have to have:
// Bookings * -> 1 Equipment on [EquipmentID]
// Bookings * -> Reservas on [ReserveID]

AvgResponseTime =
AVERAGEX(
    // This is the table you show
    // in the picture, I assume.
    Bookings, 
    DATEDIFF(
        Bookings[Booking Date],
        RELATED( Reservas[ResponseDate] ),
        HOUR
    )
)

I got this error:

 

170323003_0-1596726343361.png

 

 

And i didnt get this part u send:

 

170323003_1-1596726399501.png

 

forgot to mention that Reservas[ResponseDate] it's a measure i created: 

ResponseDate = ALL(Reservas[Date])
 
although, if i use simply Reservas[Date] the error is the same

 

Anonymous
Not applicable
amitchandak
Super User
Super User

@170323003 , you need to have a common row context for that. refer to my blog. Same is true for import mode

https://community.powerbi.com/t5/Community-Blog/Decoding-Direct-Query-in-Power-BI-Part-2-Date-Differ...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi, ty for your response.

Although i didnt get 😞

Could you be more specific or explain me by an easier way?

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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