When a date is present in a field, I'm calculating 4 weeks ahead of that date, else I want it to be blank. This is returning an #incorrectargumentset. Thanks!
=IFERROR(IF(WEEKDAY([End Date]16) = 1, ([End Date]16) + 30, IF(WEEKDAY([End Date]16) = 2, ([End Date]16) + 29, IF(WEEKDAY([End Date]16) = 3, ([End Date]16) + 28, IF(WEEKDAY([End Date]16) = 4, ([End Date]16) + 34, IF(WEEKDAY([End Date]16) = 5, ([End Date]16) + 33, IF(WEEKDAY([End Date]16) = 6, ([End Date]16) + 32, IF(WEEKDAY([End Date]16) = 7, ([End Date]16) + 31, ""))))))))