Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
S S S S is offline
external usenet poster
 
Posts: 38
Default formala help required.

The basis of this formula is to work out room size and depending on the area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default formala help required.

=VLOOKUP(D7,{0,9000;16,12000;23,18000;31,24000},2)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"S S" wrote in message
. uk...
The basis of this formula is to work out room size and depending on the

area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
S S S S is offline
external usenet poster
 
Posts: 38
Default formala help required.

Excellent! thanks for your speedy and accurate response.


"Bob Phillips" wrote in message
...
=VLOOKUP(D7,{0,9000;16,12000;23,18000;31,24000},2)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"S S" wrote in message
. uk...
The basis of this formula is to work out room size and depending on the

area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks






  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,339
Default formala help required.

in E7:

=LOOKUP(D7,{0,16,23,31},{9000,12000,18000,24000})

Copy down to E10.

HTH

"S S" wrote:

The basis of this formula is to work out room size and depending on the area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
S S S S is offline
external usenet poster
 
Posts: 38
Default formala help required.


If the figure is less than 9000 how can I get it to show a blank
cell....thanks


=LOOKUP(D7,{0,16,23,31},{9000,12000,18000,24000})

Copy down to E10.

HTH

"S S" wrote:

The basis of this formula is to work out room size and depending on the
area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default formala help required.

How does it get to be less than 9000, 9000 was your smallest value?

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"S S" wrote in message
. uk...

If the figure is less than 9000 how can I get it to show a blank
cell....thanks


=LOOKUP(D7,{0,16,23,31},{9000,12000,18000,24000})

Copy down to E10.

HTH

"S S" wrote:

The basis of this formula is to work out room size and depending on the
area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks







  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
S S S S is offline
external usenet poster
 
Posts: 38
Default formala help required.

I suppose to be more accurate....... if they dont put in any figures it
currently shows 9000, and it would look better if it were a blank or zero.

For example I have set this up for 4 rooms if they only have 2 rooms then
the formula works out the required figure for those rooms, the other 2 rooms
have no figures (as they would not be required in this example) they would
show a default of 9000. I hope this explains.


"Bob Phillips" wrote in message
...
How does it get to be less than 9000, 9000 was your smallest value?

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"S S" wrote in message
. uk...

If the figure is less than 9000 how can I get it to show a blank
cell....thanks


=LOOKUP(D7,{0,16,23,31},{9000,12000,18000,24000})

Copy down to E10.

HTH

"S S" wrote:

The basis of this formula is to work out room size and depending on
the
area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks









  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default formala help required.

Do either of these help:

=LOOKUP(D7,{0,1,16,23,31;0,9000,12000,18000,24000} )

=LOOKUP(D7,{0,1,16,23,31;"",9000,12000,18000,24000 })

You can make the "1" as small as you like, say 0.1 or 0.001.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"S S" wrote in message
. uk...
I suppose to be more accurate....... if they dont put in any figures it
currently shows 9000, and it would look better if it were a blank or zero.

For example I have set this up for 4 rooms if they only have 2 rooms then
the formula works out the required figure for those rooms, the other 2

rooms
have no figures (as they would not be required in this example) they would
show a default of 9000. I hope this explains.


"Bob Phillips" wrote in message
...
How does it get to be less than 9000, 9000 was your smallest value?

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"S S" wrote in message
. uk...

If the figure is less than 9000 how can I get it to show a blank
cell....thanks


=LOOKUP(D7,{0,16,23,31},{9000,12000,18000,24000})

Copy down to E10.

HTH

"S S" wrote:

The basis of this formula is to work out room size and depending on
the
area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks










  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
S S S S is offline
external usenet poster
 
Posts: 38
Default formala help required.

thanks RD that works good.


"Ragdyer" wrote in message
...
Do either of these help:

=LOOKUP(D7,{0,1,16,23,31;0,9000,12000,18000,24000} )

=LOOKUP(D7,{0,1,16,23,31;"",9000,12000,18000,24000 })

You can make the "1" as small as you like, say 0.1 or 0.001.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"S S" wrote in message
. uk...
I suppose to be more accurate....... if they dont put in any figures it
currently shows 9000, and it would look better if it were a blank or
zero.

For example I have set this up for 4 rooms if they only have 2 rooms then
the formula works out the required figure for those rooms, the other 2

rooms
have no figures (as they would not be required in this example) they
would
show a default of 9000. I hope this explains.


"Bob Phillips" wrote in message
...
How does it get to be less than 9000, 9000 was your smallest value?

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"S S" wrote in message
. uk...

If the figure is less than 9000 how can I get it to show a blank
cell....thanks


=LOOKUP(D7,{0,16,23,31},{9000,12000,18000,24000})

Copy down to E10.

HTH

"S S" wrote:

The basis of this formula is to work out room size and depending on
the
area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks












  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default formala help required.

Appreciate the feed-back.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"S S" wrote in message
k...
thanks RD that works good.


"Ragdyer" wrote in message
...
Do either of these help:

=LOOKUP(D7,{0,1,16,23,31;0,9000,12000,18000,24000} )

=LOOKUP(D7,{0,1,16,23,31;"",9000,12000,18000,24000 })

You can make the "1" as small as you like, say 0.1 or 0.001.
--
HTH,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-
"S S" wrote in message
. uk...
I suppose to be more accurate....... if they dont put in any figures it
currently shows 9000, and it would look better if it were a blank or
zero.

For example I have set this up for 4 rooms if they only have 2 rooms

then
the formula works out the required figure for those rooms, the other 2

rooms
have no figures (as they would not be required in this example) they
would
show a default of 9000. I hope this explains.


"Bob Phillips" wrote in message
...
How does it get to be less than 9000, 9000 was your smallest value?

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"S S" wrote in message
. uk...

If the figure is less than 9000 how can I get it to show a blank
cell....thanks


=LOOKUP(D7,{0,16,23,31},{9000,12000,18000,24000})

Copy down to E10.

HTH

"S S" wrote:

The basis of this formula is to work out room size and depending

on
the
area
allocate a suitable sized air conditioning unit ....

In cells D7 to D10 I will have a figure between 0-45 (sq

metres)

In cells E7-E10 I require an answer based on D cells

if answer between 0-15 then show 9000
if answer between 16-22 then show 12000
if answer between 23-30 then show 18000
if answer 31+ then show 24000

help appreciated for the formula to go into Cells E7-E10
thanks













Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Make text cells and combo boxes required? mlroy@savvis Excel Discussion (Misc queries) 2 July 24th 06 08:19 PM
can you make a cell value required? nishapurohit Excel Discussion (Misc queries) 2 January 30th 06 11:42 PM
highlighting required fields maryann Excel Worksheet Functions 2 June 23rd 05 06:16 PM
SPECIFY REQUIRED PAPER SIZE IN EXCEL 2000 Augustine Excel Discussion (Misc queries) 0 January 17th 05 12:05 PM
Rate of return required formula Alorasdad Excel Worksheet Functions 1 November 18th 04 03:14 AM


All times are GMT +1. The time now is 06:30 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"