Too many arguments

onebassplayer

New Member
Joined
Oct 2, 2014
Messages
3
Hi everyone!

I've researched, tried different solutions, got help from a friend at work. I'm flummoxed...

=IF(AND(E2>0,F2>0),(Main!G11-(DAYS(F2,E2)))/Main!G11,IF(AND(E2>0,F2=""),DAYS(E2,Main!D11)/Main!G11),IF(AND(E2="",F2>0),DAYS(Main!F11,F2)/Main!G11))

Your help is greatly appreciated!

Thanks!
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
By the way...

The formula works when I stop at the first two IF AND statements like below.

=IF(AND(E2>0,F2>0),(Main!G11-(DAYS(F2,E2)))/Main!G11,IF(AND(E2>0,F2=""),DAYS(E2,Main!D11)/Main!G11))

The third IF AND statement also works by itself.

=IF(AND(E2="",F2>0),DAYS(Main!F11,F2)/Main!G11)

It looks like I'm just not marrying them all together properly?

Thanks!
 
Upvote 0
Try:

=IF(AND(E2>0,F2>0),(Main!G11-DAYS(F2,E2))/Main!G11,IF(AND(E2>0,F2=""),DAYS(E2,Main!D11)/Main!G11,IF(AND(E2="",F2>0),DAYS(Main!F11,F2)/Main!G11)))

(The formula will return FALSE if none of the IFs are satisfied).
 
Upvote 0

Forum statistics

Threads
1,215,216
Messages
6,123,669
Members
449,114
Latest member
aides

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