PDA

View Full Version : Excel help


flywatcher
29th Apr 2008, 22:04
Help, my Excel skills are poor. I need a formula for a 90 day rolling instrument flight time, ie, after 90 days drop of first flight and add 90th etc. Can anyone help? Thanks in advance.

MetoPower
30th Apr 2008, 06:13
Try this:

Assuming column A are the dates (ie. A1 to A123), and column B you flight/block times (B1 to B123), then in the cell you selected insert the following furmulae:
=SUMIF(A1:A123),">="&TODAY()-90,B1:B123).

OR

There is an other possibility based on NOW instead of TODAY, but this needs one extra column and goes as follows:
Assuming column A are the dates and column B the Blocks ON times, then column C will contain the sum of A + B in their respective rows (and formatted as dd/mmm/yyyy hh:mm) - this column could be hidden later on as it is only for calculation purpose. Column D would contain your flight/block times.
The formulae would then be:
=SUMIF(C1:Cxx),">="&NOW()-90,D1: Dxx)

For you to see.

Happy contrails

MP

flywatcher
2nd May 2008, 07:33
Thanks Meto, as soon as my grandchildren turn up I will let them do it. Best wishes.

Two_dogs
2nd May 2008, 13:19
I have an excel spreadsheet where each row is a day. I log my instrument flight time in column L in decimal hours. eg. 1.2, 0.0, 2.3, 1.4, 0.0, 2.5
Column M is simply =SUM(L1:L89), =SUM(L2:L90), =SUM(L3:L91) etc.
Column M will read, 1.2, 1.2, 3.5, 4.9, 4.9, 7.4

There is no need to worry about a rolling total like last 7, 30, and 365 day flight time totals as there is no need to subtract times.

You only need to know how many hours you have logged in the last 90 days.

Works for me ...


Two Dogs