Forecast formula

wxman16

New Member
Joined
Sep 5, 2016
Messages
24
Hello everyone,

I'm working on a file regarding calculating landing distance. Here is the data for example:

Data:
Landing Weight = 59,400 kg
Pressure altitude = 3,000 ft
Temperature = 30C
Landing configuration = FULL
Brake Mode = Manual
Approach speed = VLS + 8 kt
Slope = -0.07%
Runway Condition = Dry
Both Reversers = Yes

In Cells B2:C10 contains the data mentioned above.
In Cells C22:K32 contains the Corrections on Landing Distance for a Dry runway and similar data for Good runway in Cells C38:K48.
In Cells C36:K36 contains the calculation results based on the data in Cells B2:C20 and Cell G3 where finally Cell M36 displays the final result.

What I'm trying to do is have a formula in Cells E36:K36 that calculates the data from Cells B2:D20 with the data in Cells C22:K32. If you take a look at Cells C36:K36 for example, you can see some of the formulas I have going. I just have a little problem with Cell G36:H36 and Cell J36 in terms of coming up with the formula I need. I think the Forecast and Offset function are the ones that are going to work but not sure.

Basically, based on the result in Cell B18 and C18, I would take whichever value is higher, in this case 8 and apply the rule in Cell G25 & G27. So it should look like this if using manual brake mode with full configuration: 2 x 60 = 120. Technically 1.5 (1.5 x 60 = 90) because my higher value in Cell C18 is 8, not 10. If Cell C18 was 10, then it be 2 x 60 or if Cell C18 was 3, then the value from Cell B18 would apply which then be 1 x 60. In other words, how many per 5 kt do I have in Cell C18, 2 or 1.5??


Landing distance.xlsx
ABCDEFGHIJKLMN
1
2LDG weight59400Weight Correction6600kgs
3elevation3000-660meters
4Temp30
5LDG CONFFull
6Brake modeManualSafety Factor
7Slope-0.71.15
8RWY CONDDry
9Both Rev workingYes
10
11
12Vapp Correction
135 KT1/3 headwind (excluding gust) max = 15 ktRequired Landing Distance
14808.45
15
16
17Whichever is Higher
1858
19
20ISA DEV212.163
21
22Dry
23Corrections on Landing DistanceWeightVapp SPEEDAltitudeTempSlopeReversers
24
25Brake ModeLDG CONFRef Dist (m) for 66TPer 1T below 66TPer 5ktPer 1000ft above SLPer 10°C above ISAPer 1% Down SlopePer Reverser Working-20
26
27ManualConf 31130-1080504020-20
28ManualFull1080-1060403020-20
29AB MEDConf 31420-101005050100
30AB MEDFull1360-10905040100
31AB LOWConf 32030-10150807030-10
32AB LOWFull1930-10130806020-10
33
34Braking ModeLDG CONFRef Dist (m) for 66TPer 1T below 66TPer 5ktPer 1000ft above SLPer 10°C above ISAPer 1% Down SlopePer Thrust Reverser OpsFinal
35result
36ManualFull1080-6601201206320-40808.45
37
38Good
39Corrections on Landing DistanceWeightVapp SPEEDAltitudeTempSlopeReversers
40
41Brake ModeLDG CONFRef Dist (m) for 66TPer 1T below 66TPer 5ktPer 1000ft above SLPer 10°C above ISAPer 1% Down SlopePer Reverser Working
42
43ManualConf 31480-20120807060-60
44ManualFull1370-10100706040-50
45AB MEDConf 31540-20120807060-30
46AB MEDFull1420-10110706040-10
47AB LOWConf 32030-20150807030-10
48AB LOWFull1930-10130806020-10
49
50Braking ModeLDG CONFRef Dist (m) for 66TPer 1T below 66TPer 5ktPer 1000ft above SLPer 10°C above ISAPer 1% Down SlopePer Thrust Reverser OpsFinal
51result
52ManualFull1370-66010021012640-1001248.9
53
54
55
Sheet3
Cell Formulas
RangeFormula
G2G2=66000-C2
G3G3=G2*F27/100
G14G14=M36
C20C20=C4-(15-2*(C3/1000))
D20D20=C20/10
F20F20=INDEX(I27:I32,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))*D20
M25M25=INDEX(K27:K32,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))
C36C36=C6
D36D36=C5
E36E36=INDEX(E27:E32,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))
F36F36=INDEX(F27:F32,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))*G2/100
H36,H52H36=H28*3
I36I36=INDEX(I27:I32,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))*D20
K36K36=IF(C9="Yes",M25*2,IF(C9="No",M25*1,0))
M36M36=SUM(E36:K36)*G7
C52C52=C6
D52D52=C5
E52E52=INDEX(E43:E48,MATCH(1,INDEX((C52=C43:C48)*(D52=D27:D32),0,1),0))
F52F52=INDEX(F43:F48,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))*G2/100
G52G52=G44
I52I52=INDEX(I43:I48,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))*D20
K52K52=K44*2
M52M52=SUM(E52:K52)*G7
Cells with Data Validation
CellAllowCriteria
C5List=$P$2:$P$4
C6List=$O$2:$O$5
C8List=$Q$2:$Q$4
C9List=$R$2:$R$4
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
I would take whichever value is higher, in this case 8 and apply the rule in Cell G25 & G27
Cell G25 is a header. What is the rule?
So it should look like this if using manual brake mode with full configuration: 2 x 60 = 120. Technically 1.5 (1.5 x 60 = 90) because my higher value in Cell C18 is 8, not 10. If Cell C18 was 10, then it be 2 x 60 or if Cell C18 was 3, then the value from Cell B18 would apply which then be 1 x 60. In other words, how many per 5 kt do I have in Cell C18, 2 or 1.5??
I don't understand your calculation of how is 8=> 1.5, 10=>2, and 5=>1?
 
Upvote 0
Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: Forecast with Vlookup
If you have posted the question at more places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0
Cell G25 is a header. What is the rule?

I don't understand your calculation of how is 8=> 1.5, 10=>2, and 5=>1?

Cell G25 refers to the Vapp Speed correction values in Cells B18 & C18. The rule in Cell G25 states for every 5kt based on the higher value of the two in Cells B18 or C18, I would have to multiply it by the value in Cells G27:G32 depending on the brake mode and landing configuration selected. So looking at Cells B18:C18, you see that I have to take the value that is higher which in this case would be 8. So naturally, one would perform the following math if being conservative: 2 x 60= 120. If Cell C18 were 3, then I would take the value in B18 instead and perform the math: 1 x 60 = 60.

How I got 1.5??? To be more specific with the calculation, since Cell C18 has the higher value, I need to know how many times I need to multiply how many per 5 kt I have with the value in Cell G28. In this case, you would divide 8 by 5 (8/5 = 1.6). So the result I should have displayed in Cell G36 should be 96 because the math was 1.6 x 60 = 96

Simply math I think, right?? Say, for every 3 apples, you need to count them as 1 and multiply that value by 5. So, if you have 11 apples for example, what would the value be when you multiply that value by 5?? 11/3 = 3.7 then 3.7 x 5 = 18.5

Hope that made sense.
 
Upvote 0
If I understand you correctly, this is what you're looking for:
Book1.xlsx
G
2796
Sheet3
Cell Formulas
RangeFormula
G27G27=MAX(B18:C18)/5*60
 
Upvote 0
If I understand you correctly, this is what you're looking for:
Book1.xlsx
G
2796
Sheet3
Cell Formulas
RangeFormula
G27G27=MAX(B18:C18)/5*60
Yes, thank you. The MAX function was what I was looking for (y). The formula below, I have in Cell G36 which is what I needed. I figured it out , brain fart, :LOL::

=INDEX(G27:G32,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))*MAX(B18:C18)/5


How can I clean up the formula in Cells I36:K36 to look a bit more cleaner?? For example, in Cell I36, I have the following formula:

I36=INDEX(I27:I32,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))*D20

The 2 formulas below, how am I able to combine them and then add it to the formula above (taking out the *D20) and replacing it with a combine formula from the below formulas??
D20=C20/10
C20=C4-(15-2*(C3/1000))

I had this going but it was giving me the wrong result, giving me 29.1 which should be 2.1: C20=C4-(15-2*(C3/1000))/10

Cells J36 & K36, I'm still trying to find a better formula
 
Upvote 0
Book1.xlsx
I
3663
Sheet3
Cell Formulas
RangeFormula
I36I36=INDEX(I27:I32,MATCH(1,INDEX((C36=C43:C48)*(D36=D27:D32),0,1),0))*(500*(C4-15)+C3)/5000
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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