3votes

Can anyone tell me why this formula returns: Too few arguments in function if

if(prop("Retention") == "<50%", dateAdd(prop("Last Revision"), 1, "days"), if(prop("Retention") == "70%", dateAdd( prop("Last Revision"), 7, "days", if prop("Retention") == "90%", dateAdd(prop(Last Revision), 14, "days"), dateAdd(prop("Last Revision "), 0, "days"))))

1 Answer

2votes

adam Points1460

this line is missing a ')'

if(prop("Retention") == "70%", dateAdd( prop("Last Revision"), 7, "days", if

should be this:

if(prop("Retention") == "70%", dateAdd(prop("Last Revision"), 7, "days"), if

Please log in or register to answer this question.

...

Welcome to Notion Answers, where you can ask questions and receive answers from other members of the community.

Please share to grow the Notion Community!

Connect