formula help in excel

Mog_73

New Member
Joined
Jun 2, 2011
Messages
2
Hi i am trying to work out a formula to do this,

i have various fan cubic airflow capacities:
175m3 = fan 100
225m3 = fan 125A
410m3 = fan 125L

what i need to do is i have a cell which shows the M3 of a room and i need to use the result from that cell to diplay which fan i need in another cell. any ideas please?
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Welcome to the forum,

It looks as though a VLookup would do this for you, assuming you have a master sheet with all the variables on it? You can also use a Validation so the list of M3 codes can only be selected and then the Type of Fan is displayed next to it.
 
Upvote 0
Hi i am trying to work out a formula to do this,

i have various fan cubic airflow capacities:
175m3 = fan 100
225m3 = fan 125A
410m3 = fan 125L

what i need to do is i have a cell which shows the M3 of a room and i need to use the result from that cell to diplay which fan i need in another cell. any ideas please?

You could use this formula if you input the m3 into cell D1 as a number (ie, 125 instead of 125m3)

Code:
=LOOKUP(D1,{0,176,226},{"fan 100","fan 125A","fan 125L"})

:)
 
Upvote 0
Welcome to the MrExcel board!

Assuming that for a particular room size you have to go up to ensure the fan is big enough then you could build a lookup table like I have in columns F:G and then use a VLOOKUP formula.

Excel Workbook
ABCDEFG
1Room (m3):180Room (m3)Fan
2Fan:fan 125A0fan 100
3176fan 125A
4226fan 125L
5
Choose Fan
 
Upvote 0
Thank you all for your replies i am new to formulas except the very basic ones i.e vat calculations etc, i have seen formulas written and i was probably trying to overdo the formulas.. i was trying to write a formula probably a very long way round but if you can follow my example of what i was doing;

if a1(m3 of a room) =<175 then input 100 else if a1>175 but <225 then input 125a else if a1>225 but <410 then input 125l

basically i need to show which fan corresponds to room size as fans are based on max capacity so the fan size would depend on an 'in between' figure, i will give these formulas above a go but just wanted you to know where i believe i was going wrong.

many thanks again.
 
Upvote 0
Yes, you should give the suggested formulas a try because I think they do what you want. :biggrin:

Assuming you are using this formula in a number of cells, the advantage of using a table in your workbook somewhere, as opposed to putting the values directly in the formula like kidwispa did, is that it is much easier to amend if you later want to change the room size values or fan names.
 
Upvote 0

Forum statistics

Threads
1,224,544
Messages
6,179,430
Members
452,915
Latest member
hannnahheileen

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