multi IF

blackisblack

New Member
Joined
Sep 14, 2003
Messages
4
Hi People, can you help :biggrin:

I want to do a formula that will look at one colum and on its finding (txt based) then enter a finding (number based) in another colum. I can do it for one finding but not two.

ie =IF(A1=D1,E1,0)
A1 = Holiday
E1 = 7.5

but say if it says Half day in a1 it would put 3.75 in

sorry if this does not make sence

Andy
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
blackisblack said:
Hi People, can you help :biggrin:

I want to do a formula that will look at one colum and on its finding (txt based) then enter a finding (number based) in another colum. I can do it for one finding but not two.

ie =IF(A1=D1,E1,0)
A1 = Holiday
E1 = 7.5

but say if it says Half day in a1 it would put 3.75 in

sorry if this does not make sence

Andy

=IF(A1=D1,E1,IF(A1=F1,G1,""))

F1= Half day
G1 = 3.75
 
Upvote 0
Try this. Put it is cell E1

If(A1="Holiday",7.5,if(A1="Half Day",3.75,false))

Change false to whatever you want the value to be if it is not holiday or half day.

Hope this helps

Jacob
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

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