Too many arguments in a function in ms excel

时间:2017-08-04 12:26:28

标签: excel excel-formula

=IF(F17="","","",IF(F17="TRUE","PAID","UNPAID"))

If statement in excel displays an error that there are too many arguments. Function is used to determine if cell has a value, if value is equals to TRUE then display PAID else if not then display UNPAID, if value is blank then display blank.

1 个答案:

答案 0 :(得分:0)

You have too many arguments in your first if statement, you need to replace your second set of empty quotes with your if statement like so:

=IF(F17="","",IF(F17="TRUE","PAID","UNPAID"))

Depending on your data, you might need to drop the quotes on "TRUE" to get it to work.