If function too many arguments error

wells

New Member
Joined
Jan 9, 2020
Messages
24
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
How to solve the error in below formula.. ??

$S2=”Billable Only”,”BILLABLE ONLY” when inserted in formula shows error. Rest of the formula works fine.

VBA Code:
=IFS($V2="YBWR","What",ISNUMBER($Y2),"Fully Delivered",$S2=”Billable Only”,”BILLABLE ONLY”,AND(ISBLANK($Y2),NOT(ISBLANK($AA2))),"Under shipment",AND(ISBLANK($Y2),ISBLANK($AA2),ISNUMBER($N2)),"Under packing",AND(ISBLANK($Y2),ISBLANK($AA2),ISBLANK($N2)),TEXT(WEEKNUM($W2),"W00"))
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
You need to replace the curly quotes with normal quotes:

=IFS($V2="YBWR","What",ISNUMBER($Y2),"Fully Delivered",$S2="Billable Only","BILLABLE ONLY",AND(ISBLANK($Y2),NOT(ISBLANK($AA2))),"Under shipment",AND(ISBLANK($Y2),ISBLANK($AA2),ISNUMBER($N2)),"Under packing",AND(ISBLANK($Y2),ISBLANK($AA2),ISBLANK($N2)),TEXT(WEEKNUM($W2),"W00"))
 
Upvote 0

Forum statistics

Threads
1,224,825
Messages
6,181,190
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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