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

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
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,214,925
Messages
6,122,298
Members
449,077
Latest member
Rkmenon

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