IFERROR with Let Function

Anonymous
2025-01-07T16:24:50+00:00

How do I do a IFERROR if II590 is blank to leave J1590 blank

=LET(d, DATE(5+YEAR(I1590), MONTH(E1590), DAY(E1590)), IF(d <= EDATE(I1590, 5*12), EDATE(d, 12), d))

Microsoft 365 and Office | Excel | For business | Android

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
{count} votes

4 answers

Sort by: Most helpful
  1. riny 19,670 Reputation points Volunteer Moderator
    2025-01-07T16:54:06+00:00

    Try this:

    =IF(ISBLANK(I1590, "", LET(d, DATE(5+YEAR(I1590), MONTH(E1590), DAY(E1590)), IF(d <= EDATE(I1590, 5*12), EDATE(d, 12), d)))

    0 comments No comments
  2. Anonymous
    2025-01-08T14:31:45+00:00

    It comes back with the error You've entered too many arguments for this function. Thoughts?

    0 comments No comments
  3. Anonymous
    2025-01-08T14:58:24+00:00

    =if(I1590="","",LET(d, DATE(5+YEAR(I1590), MONTH(E1590), DAY(E1590)), IF(d <= EDATE(I1590, 5*12), EDATE(d, 12), d)))

    0 comments No comments
  4. Anonymous
    2025-01-08T14:59:00+00:00

    =IF(ISBLANK(I1590**), "",** LET(d, DATE(5+YEAR(I1590), MONTH(E1590), DAY(E1590)), IF(d <= EDATE(I1590, 5*12), EDATE(d, 12), d)))

    1 person found this answer helpful.
    0 comments No comments