=> function using named ranges

wippa_dippa

New Member
Joined
Oct 15, 2010
Messages
9
Hello!

I need to use a 'greater than or equal to' function using named ranges, as follows:

A range of column B cells is named 'apples'
A range of column C cells is named 'oranges'
A range of column D cells is named 'pears'
A range of column E cells is named 'bananas'
A range of column G cells is named 'stocknote'
- the cells in all of these ranges contain a number

I need to use the named ranges to create a function that basically says
"if the numbers in the named ranges of apples, oranges, pears and bananas are ALL equal to or greater than the number in the 'stocknote' range/column, TRUE= 'Fine' FALSE= 'Ask'.

Is this possible? I'm a bit bewildered by the whole thing!

Thanks for looking!
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Is this being done on a row by row basis or the entire set. If it's the entire set, unless you are using XL2007 or higher you can't use the entire column, so what would be reasonably the highest row you would need.
 
Upvote 0
Is this being done on a row by row basis or the entire set. If it's the entire set, unless you are using XL2007 or higher you can't use the entire column, so what would be reasonably the highest row you would need.

Hi!

It's row by row, (if the apples, oranges, pears and bananas of a single row are equal to or greater than the 'stocknote' value of the same row, TRUE= 'Fine' FALSE= 'Ask')

Thanks for looking :)
 
Upvote 0
=IF(AND(apples>=stocknote,oranges>=stocknote,pears>=stocknote,bananas>=stocknote),"Fine","Ask")

Copy down.
 
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,912
Members
452,366
Latest member
TePunaBloke

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