If's and named ranges.

NileUk

New Member
Joined
Jan 20, 2021
Messages
10
Office Version
  1. 2007
Platform
  1. Windows
Hi

I have a Cell B13 that is a DV list of labor types. I also have some named ranges in another sheet with the different labor costs in named ranges.

I'm trying to use a 'IF' formular in cell I13 to show the various cost's depending on the labor type chosen in the DV list in B13 as shown below but it keeps saying I have too many arguments!

Excel Formula:
=IF(AND(B13="Std Labour", "Extra Over Labour"),StdLabCost,0,IF(B13="OOH Labour",OOHLabCost,0, ))

I've created multiple IF statements befor and they worked fine, but now i'm using named ranges i'm not sure if this is the right formula to use.

Can you help.

Kind Regards

Nile
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Maybe
Excel Formula:
=IF(OR(B13={"Std Labour","Extra Over Labour"}),StdLabCost,IF(B13="OOH Labour",OOHLabCost,0))
 
Upvote 0
Maybe
Excel Formula:
=IF(OR(B13={"Std Labour","Extra Over Labour"}),StdLabCost,IF(B13="OOH Labour",OOHLabCost,0))
Hello again Fluff.

No it's not finding the OOHLabCost
 
Upvote 0
Fluff

I forgot to mention it was in a table. Added the table ranges and BINGO!

Excel Formula:
=IF(OR(tblEmpLabour[[#This Row],[Item Type]]={"Std Labour","Extra Over Labour"}),StdLabCost,IF(tblEmpLabour[[#This Row],[Item Type]]="OOH Labour",OOHLabCost,0))

Thanks once again.

Regards

Nile
 
Last edited by a moderator:
Upvote 0
Solution
Glad you sorted it & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,639
Messages
6,125,968
Members
449,276
Latest member
surendra75

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