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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.