IF statement Help

HMiller21

New Member
Joined
Nov 13, 2019
Messages
1
=IF(C7="Rosemont University",E7*$P$28,IF(C7="Clayborn University",E7*$P$28,IF(C7="Branch College",E7*$P$28,IF(C7="Eastern Wisconsin University",E7*$P$28))))
My issue is that I can seem to remove False from my cells.
Any help is appreciated
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Hi & welcome to MrExcel.
How about
=IF(OR(C7={"Rosemont University","Clayborn University","Branch College","Eastern Wisconsin University"}),E7*$P$28,"?")

Replace the ? with whatever you want if C7 doesn't equal any of those values
 
Upvote 0
Welcome to the Board!

If you do not want to see "FALSE" if none of the conditions are met, then you need to tell it what to return in that case. So you need to add a FALSE clause in your last check, i.e.
Code:
[COLOR=#333333]=IF(C7="Rosemont University",E7*$P$28,IF(C7="Clayborn University",E7*$P$28,IF(C7="Branch College",E7*$P$28,IF(C7="Eastern Wisconsin University",E7*$P$28[/COLOR][COLOR=#ff0000],""[/COLOR][COLOR=#333333]))))[/COLOR]
Note, you could also write this like:
Code:
[COLOR=#333333]=IF(OR(C7="Rosemont University",C7="Clayborn University",C7="Branch College",C7="Eastern Wisconsin University"),E7*$P$28,"")[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,488
Members
448,967
Latest member
visheshkotha

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