Help with arrays

ringerhb

New Member
Joined
Jul 8, 2011
Messages
3
I have an array of 3 numbers that are dependent upon a formula. The formulas one day might make an array of (0,3,7). I want to use the small formula on these three numbers. so I will say =small(a1:a3,1). BUT, I don't like having to have the 0,3,and 7 on my excel spread sheet. It is too messy. I would like to be able to enter the a1 a2 and a3 formulas into my small formula but I don't know how. Something like .... =small(formula1,formula2,formula3,1)
Is this possible? Thanks! :)
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Welcome to the board...

What are the formulas you have in A1 A2 and A3?


don't think it can be done exactly as you're thinking.
But depending on what those formulas are, there's likely some kind of
=SMALL(IF(...
type of formula that will work.
 
Upvote 0
Try using CHOOSE function

=SMALL(CHOOSE({1,2,3},formula1,formula2,formula3),1)

don't include = for the 3 formulas......
 
Upvote 0
I have an array of 3 numbers that are dependent upon a formula. The formulas one day might make an array of (0,3,7). I want to use the small formula on these three numbers. so I will say =small(a1:a3,1). BUT, I don't like having to have the 0,3,and 7 on my excel spread sheet. It is too messy. I would like to be able to enter the a1 a2 and a3 formulas into my small formula but I don't know how. Something like .... =small(formula1,formula2,formula3,1)
Is this possible? Thanks! :)
All that needs some clarification...

What you have...

=small(formula1,formula2,formula3,1)

can be read something like:

=SMALL((SUM(A1:C1),PRODUCT(E2,F2),3),1)

which is equivalent to:

=MIN(SUM(A1:C1),PRODUCT(E2,F2),3)
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,399
Members
449,447
Latest member
M V Arun

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