Function has too many arguments...
Solved/Closed
j1969c
Posts
20
Registration date
Friday August 28, 2015
Status
Member
Last seen
April 5, 2016
-
Sep 9, 2015 at 09:11 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Sep 10, 2015 at 04:14 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Sep 10, 2015 at 04:14 AM
Why is excel telling me that this formula has too many arguments?
=IF(TODAY()>=B9+15,"PAY NOW","HOLD",IF(u9="PAID","PAID"))
I am stationed on cell T9 which already has the function
=IF(TODAY()>=B9+15,"PAY NOW","HOLD")
But I want T9 to show PAID if U9 shows PAID.
Many thanks, Jose Cruz
=IF(TODAY()>=B9+15,"PAY NOW","HOLD",IF(u9="PAID","PAID"))
I am stationed on cell T9 which already has the function
=IF(TODAY()>=B9+15,"PAY NOW","HOLD")
But I want T9 to show PAID if U9 shows PAID.
Many thanks, Jose Cruz
Related:
- In excel, how many arguments can a function hold?
- Strong hold cheat - Guide
- Number to words in excel - Guide
- Gif in excel - Guide
- Excel mod apk for pc - Download - Spreadsheets
- How to take screenshot in excel - Guide
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Sep 10, 2015 at 04:14 AM
Sep 10, 2015 at 04:14 AM
try in T9
=IF(U9="paid","Paid",IF(TODAY()>B9+15,"Pay now","hold"))
in your formula for an if condition there are only two alternatives one if if condition is correct (pay now) or if the if condition is wrong then the third argument (hold). there cannot be any other choice. that is why error.
=IF(U9="paid","Paid",IF(TODAY()>B9+15,"Pay now","hold"))
in your formula for an if condition there are only two alternatives one if if condition is correct (pay now) or if the if condition is wrong then the third argument (hold). there cannot be any other choice. that is why error.