Airplane weight and balance

JoeNichols

New Member
Joined
Jun 1, 2019
Messages
6
I'm trying to write a formula for a aircraft weight and balance. The rear arm limit remains constant, but the forward limit shifts after reaching a certain weight.

EX: Weight up to 2050 forward limit is 82.0 and rear limit is 93.0. Weights between 2050 and 2550 the forward limit shifts aft at a constant rate from 82.0 to 88.6 while the rear limit remains at 93.0

I've started with this formula:
=IF(B30<=2050,"82.0",IF(B30>2050,(B30-2050)*0.0132+82))

This formula works but if the weight in B30 exceeds 2550 it will continue to shift the forward limit aft past 88.6.

I tried adding this to the formula:
=IF(B30<=2050,"82.0",IF(AND(B30>2050,B30<=2550),(B30-2050)*0.0132+82))

If the weight is over 2550, the cell shows "FALSE".

I tried:
=IF(B30<=2050,"82.0",IF(AND(B30>2050,B30<=2550),(B30-2050)*0.0132+82),IF(B30>2550,"88.6"))

But is says too many arguments for this function and I don't know excel well enough to troubleshoot the formula.

____________________

My goal is that if the weight is over 2550 the forward limit will continue to show 88.6. It will stop shifting aft and not show false.

Thanks for any help you can offer.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Perhaps:-
Code:
=IF(B30<2050,"82.0",IF(B30>2550,"88.6",IF(AND(B30>2050,B30<=2550),(B30-2050)*0.0132+82)))
 
Upvote 0
I am pretty sure that this formula will do what you want...

=MAX(82,MIN(88.6,(B30-2050)*0.0132+82))
 
Last edited:
Upvote 0
Thanks Mike. Your formula worked but showed an error. When testing it would sometimes show a forward and aft exceedance at the same time. I appreciate your help, thank you.
 
Upvote 0
Are either of you are interested in another challenge? How can I change the text color (ex; a green "OK" to a red "EXCEEDED")? I don't want the cell background to change color as these may need to be printed and would make them difficult to read.

Thanks in advance for your help.
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,756
Members
448,990
Latest member
Buzzlightyear

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