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
zaidmasad
Helper III
Helper III

Calculating transit time excluding situational dates and holidays for origin and destination

Hello,

 

I have a set of data for shipments, and I need to calculate the transit time but the holidays have to be excluded based on the origin and the destination.

 

My Shipments sheet look like this:

IDOrigin EntityDestination EntityStart DateEnd Date
145413AMMCAI2016-05-032016-05-05
145412DXBJED2016-05-032016-05-6
145415JEDJED2016-05-012016-05-04
145411AMMJED2016-05-032016-05-07
145422DXBJED2016-05-012016-05-09
145462DXBJED2016-05-042016-05-09
14547JEDJED2016-05-042016-05-14
14545RUHLON2016-05-012016-05-03
14541MCTYYZ2016-05-012016-05-04
145419AMMCAI2016-05-022016-05-04

 

And I have another Calendar table and a table for the situational dates each with its entity:

situationDateentity
5/1/2016AMM
5/3/2016DXB
5/8/2016RUH
5/11/2016MCT
5/30/2016EBL

 

Please advise how can i do such thing

1 ACCEPTED SOLUTION
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @zaidmasad,

First, you need to create a relationship between the shipment and situation tables.

1.PNG

Then create two calculated columns using the formulas. You will get the ransit time excluding situational date.

situation = IF(ISBLANK(RELATED(situation[situationDate])),0, CALCULATE(COUNT(situation[situationDate]),FILTER(Shipments,Shipments[Start Date]<=RELATED(situation[situationDate])&&Shipments[End Date]>=RELATED(situation[situationDate]))))

transit time = DATEDIFF(Shipments[Start Date],Shipments[End Date],DAY)-Shipments[situation]

2.PNG

In addition, you want to exclude the holidays, what's the holiday, could you please share more details?

Thanks,
Angelia


View solution in original post

1 REPLY 1
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @zaidmasad,

First, you need to create a relationship between the shipment and situation tables.

1.PNG

Then create two calculated columns using the formulas. You will get the ransit time excluding situational date.

situation = IF(ISBLANK(RELATED(situation[situationDate])),0, CALCULATE(COUNT(situation[situationDate]),FILTER(Shipments,Shipments[Start Date]<=RELATED(situation[situationDate])&&Shipments[End Date]>=RELATED(situation[situationDate]))))

transit time = DATEDIFF(Shipments[Start Date],Shipments[End Date],DAY)-Shipments[situation]

2.PNG

In addition, you want to exclude the holidays, what's the holiday, could you please share more details?

Thanks,
Angelia


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.

Top Solution Authors
Top Kudoed Authors