IF? for a result?

go77377

New Member
Joined
Oct 4, 2011
Messages
24
Sometimes a formula that should be so simple really gets the best of me.

Can some advise me of what I'm doing wrong?

Below is the formula....

=IF(H9="2",(D9*13)),IF(H9="3",(D9*20))

All I'm trying to do is where ("H9="2") is to multiply the formula, then if (H9="3") then multiply that formula and place it in the cell. The cell the result would be placed in is (I9).

Is this enough info or did I leave something out?
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
If H9 is a number rather than text remove the quotes
 
Upvote 0
When I remove the quotes, the result says "FALSE". It should display 2.47, because the number in "D9" is (.19)
 
Last edited:
Upvote 0
What do you get if leave the quotes?
 
Upvote 0
How about
=IF(H9=2,D9*13,IF(H9=3,D9*20))
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,618
Members
449,092
Latest member
amyap

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