A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

using multiply if function



 
 
Thread Tools Display Modes
  #1  
Old May 15th, 2009, 05:17 PM posted to microsoft.public.excel.worksheet.functions
lbreger
external usenet poster
 
Posts: 1
Default using multiply if function

I need to create a formula using this information.

Lets say cell G3 is an age 28.4
Than I need in another cell
If G3 is 30 = 1.25
30-40 =1.0
40 = .75


Please help
  #2  
Old May 15th, 2009, 05:27 PM posted to microsoft.public.excel.worksheet.functions
Keith Faulconer
external usenet poster
 
Posts: 15
Default using multiply if function

Try this:

=if(G330,1.25,if(G340,1,.75))

I wasn't sure if you wanted 30 to be 1.25 and 40 to be .75. If that is what
you want, then use the = in place of the sign.

Hope that helps.
"lbreger" wrote in message
...
I need to create a formula using this information.

Lets say cell G3 is an age 28.4
Than I need in another cell
If G3 is 30 = 1.25
30-40 =1.0
40 = .75


Please help


  #3  
Old May 15th, 2009, 05:29 PM posted to microsoft.public.excel.worksheet.functions
Jacob Skaria
external usenet poster
 
Posts: 5,952
Default using multiply if function

=LOOKUP(G3,{0,30,41},{1.25,1,0.75})
--
If this post helps click Yes
---------------
Jacob Skaria


"lbreger" wrote:

I need to create a formula using this information.

Lets say cell G3 is an age 28.4
Than I need in another cell
If G3 is 30 = 1.25
30-40 =1.0
40 = .75


Please help

  #4  
Old May 15th, 2009, 06:04 PM posted to microsoft.public.excel.worksheet.functions
Bernard Liengme[_2_]
external usenet poster
 
Posts: 1,027
Default using multiply if function

=1.25-0.25*(G3=30)-0.25*(G340)
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"lbreger" wrote in message
...
I need to create a formula using this information.

Lets say cell G3 is an age 28.4
Than I need in another cell
If G3 is 30 = 1.25
30-40 =1.0
40 = .75


Please help



  #5  
Old May 16th, 2009, 05:20 AM posted to microsoft.public.excel.worksheet.functions
Ashish Mathur[_2_]
external usenet poster
 
Posts: 1,764
Default using multiply if function

Hi,

You may also try this. In range B26:B28, type 0,30,41. In range C26:C28,
type 1.25,1,0.17. Now type 28.4 in cell B31. In cell C31, enter the
formula =VLOOKUP(B31,B26:C28,2)

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"lbreger" wrote in message
...
I need to create a formula using this information.

Lets say cell G3 is an age 28.4
Than I need in another cell
If G3 is 30 = 1.25
30-40 =1.0
40 = .75


Please help


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:53 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.