Creating a Flight Schedule

Serrax

New Member
Joined
Oct 10, 2005
Messages
7
Office Version
  1. 2019
Platform
  1. MacOS
Hi everyone, I wonder if someone could help me, I am trying to create a flight schedule in excel, but I am lost on how to do it, I need to create a calendar of flights. I got a list of flights and details o a row, flight number, two range dates, start date and end date, and days of operation, something like this:

A B C D F
1FLIGHT NO. FROM TO DAYS OPERATION DEPARTURE TIME
2 XX145 26/03/18 27/10/18 SUN, MON, TUE, SAT 20:30
3 XX134 26/03/18 20/06/18 MON, WED 07:30

I need to create a season calendar, and translate the data above to a day calendar were I can see the flight details on a daily cell on a different sheet:

A B C D
1 SUN MON TUE WED
2 26/03/18 27/03/18 28/03/18 29/03/18
3 XX145/20:30 XX145/20:30 XX145/20:30 XX134/07:30
XX134/07:30 XX134/07:30

So, not sure if enough clear, but any kind of help will be more than welcome ....
Thanks
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Maybe the Array Formula (use Ctrl+Shift+Enter to enter the formula) below can help you:

In A12 and copy down and to the right:

=IFERROR(INDEX($A$2:$A$7&"/"&TEXT($E$2:$E$7,"hh:mm"),
SMALL(IF($B$2:$B$7 <=A$11,IF($C$2:$C$7 >=A$11,
IF(ISNUMBER(SEARCH(", "&A$10&", ",", "&$D$2:$D$7&", ")),ROW($B$2:$B$7)-ROW($B$2)+1))),ROWS(A$12:A12))),"")

ABCDEFGH
1FLIGHT NO.FROMTODAYS OPERATIONDEPARTURE TIME
2XX14526/03/201829/03/2018SUN, MON, TUE, SAT20:30
3XX13427/03/201820/06/2018MON, WED07:30
4XX13528/03/201821/06/2018FRI, THU, MON, WED10:30
5XX13629/03/201822/06/2018SUN, MON, WED, SAT09:30
6XX14626/03/201829/03/2018SUN, MON, TUE, SAT18:30
7XX14727/03/201820/06/2018MON, WED12:30
8
9
10SUNMONTUEWEDTHUFRISATSUN
11dom-25/03/2018seg-26/03/2018ter-27/03/2018qua-28/03/2018qui-29/03/2018sex-30/03/2018sáb-31/03/2018dom-01/04/2018
12XX145/20:30XX145/20:30XX134/07:30XX135/10:30XX135/10:30XX136/09:30XX136/09:30
13XX146/18:30XX146/18:30XX135/10:30
14XX147/12:30
15
***********************************************************************************************************************************************

<tbody>
</tbody>

Markmzz
 
Last edited:
Upvote 0
Markmzz, Thanks very much, I have done some changes and works as I want, thanks for your help!!
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,942
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top