Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 113
Default Multi dependent formulas

I need a way to make formulas dependent on two conditions.

example:. C6 is the word Dust
D5 is the number 9
this would make F32 $9.50

I want to put rates in to come up when the word and number equal a rate. I
have around 20 different ones.

  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3,101
Default Multi dependent formulas

try this

=IF(AND(C6="Dust",D5=9),9.5,"")
"Leslie" wrote:

I need a way to make formulas dependent on two conditions.

example:. C6 is the word Dust
D5 is the number 9
this would make F32 $9.50

I want to put rates in to come up when the word and number equal a rate. I
have around 20 different ones.

  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3,101
Default Multi dependent formulas

or this
=IF(AND(C6="Dust",D5=9),9.5,0)

"Leslie" wrote:

I need a way to make formulas dependent on two conditions.

example:. C6 is the word Dust
D5 is the number 9
this would make F32 $9.50

I want to put rates in to come up when the word and number equal a rate. I
have around 20 different ones.

  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 113
Default Multi dependent formulas

Thanks, now can I add more than one formula to the last cell? For instance if
the 9 is an 11 than it will equal 7.5 instead of 9.5?
--
Leslie


"Mike" wrote:

or this
=IF(AND(C6="Dust",D5=9),9.5,0)

"Leslie" wrote:

I need a way to make formulas dependent on two conditions.

example:. C6 is the word Dust
D5 is the number 9
this would make F32 $9.50

I want to put rates in to come up when the word and number equal a rate. I
have around 20 different ones.

  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3,101
Default Multi dependent formulas

Right and also

"Dust"
"NoDust"

"Leslie" wrote:

Thanks, now can I add more than one formula to the last cell? For instance if
the 9 is an 11 than it will equal 7.5 instead of 9.5?
--
Leslie


"Mike" wrote:

or this
=IF(AND(C6="Dust",D5=9),9.5,0)

"Leslie" wrote:

I need a way to make formulas dependent on two conditions.

example:. C6 is the word Dust
D5 is the number 9
this would make F32 $9.50

I want to put rates in to come up when the word and number equal a rate. I
have around 20 different ones.



  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 113
Default Multi dependent formulas

huh?
I 'm sorry, I think I am excel challenged....
--
Leslie


"Mike" wrote:

Right and also

"Dust"
"NoDust"

"Leslie" wrote:

Thanks, now can I add more than one formula to the last cell? For instance if
the 9 is an 11 than it will equal 7.5 instead of 9.5?
--
Leslie


"Mike" wrote:

or this
=IF(AND(C6="Dust",D5=9),9.5,0)

"Leslie" wrote:

I need a way to make formulas dependent on two conditions.

example:. C6 is the word Dust
D5 is the number 9
this would make F32 $9.50

I want to put rates in to come up when the word and number equal a rate. I
have around 20 different ones.

  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3,101
Default Multi dependent formulas

=IF(AND(C6="NoDust",D5=9),9.5,0)
=IF(AND(C6="LittleDust",D5=9),9.5,0)
=IF(AND(C6="AlotofDust",D5=9),9.5,0)


"Leslie" wrote:

huh?
I 'm sorry, I think I am excel challenged....
--
Leslie


"Mike" wrote:

Right and also

"Dust"
"NoDust"

"Leslie" wrote:

Thanks, now can I add more than one formula to the last cell? For instance if
the 9 is an 11 than it will equal 7.5 instead of 9.5?
--
Leslie


"Mike" wrote:

or this
=IF(AND(C6="Dust",D5=9),9.5,0)

"Leslie" wrote:

I need a way to make formulas dependent on two conditions.

example:. C6 is the word Dust
D5 is the number 9
this would make F32 $9.50

I want to put rates in to come up when the word and number equal a rate. I
have around 20 different ones.

  #8   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,886
Default Multi dependent formulas

Hi Leslie

If you are going to have 20 rates, then you will be better off with a
Table. The table can exist on another sheet if required.
Starting with a new sheet, enter in
A2 Dust
A3 Grit
A4 Something else

In
B1 5
C1 7
D1 9
In
B2 $5.00
C2 $7.50
D3 $9.50

Complete the matrix with whatever are the appropriate numbers for the
different cases that you have.
In cell F32 of your Sheet1 enter
=INDEX(Sheet2!$A$1:$D4,MATCH(C6,Sheet2!$A$1:$A$4,0 ),
MATCH(D5,Sheet2!$A$1:$D$1,0))

Amend the ranges to suit the size of the Table you create
--
Regards

Roger Govier


"Leslie" wrote in message
...
I need a way to make formulas dependent on two conditions.

example:. C6 is the word Dust
D5 is the number 9
this would make F32 $9.50

I want to put rates in to come up when the word and number equal a
rate. I
have around 20 different ones.



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
match in multi-column and multi-row array sloth Excel Discussion (Misc queries) 14 September 1st 06 10:33 PM
Sum if contains dependent StephanieH Excel Discussion (Misc queries) 1 August 4th 05 04:05 PM
how can I paste multi-line/multi-paragraph data into ONE cell? Theano Excel Discussion (Misc queries) 3 June 7th 05 01:10 PM
multi formulas in excel the_catster Excel Discussion (Misc queries) 3 May 13th 05 06:50 PM


All times are GMT +1. The time now is 07:28 AM.

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"