Nested IF AND function in IFS function

Mindre

New Member
Joined
Jun 7, 2021
Messages
3
Office Version
  1. 365
Platform
  1. Windows
I need to update the below formula to include this piece: IF(AND(Rate_Card_Selection="Company B",C19="Remote Access Points"),0,150))

What is the correct way to nest the IF AND function into the below?

=@IFS(C19="Company A (London)",325,Inputs!C19="Remote Access Points",150,TRUE,VLOOKUP(Rate_Card_Selection,DB!M:S,7,FALSE))
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
See if this does what you need.
Excel Formula:
=@IF(C19="Company A (London)",325,IF(Inputs!C19="Remote Access Points",IF(Rate_Card_Selection="Company B",0,150),VLOOKUP(Rate_Card_Selection,DB!M:S,7,FALSE))))
For what it's worth, it is better to use multiple IF's than IFS. It depends largely on any additional functions used with it, but the IFS function can be highly inefficient.
 
Upvote 0
Solution

Forum statistics

Threads
1,224,818
Messages
6,181,152
Members
453,021
Latest member
Justyna P

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