The check if the birthday field is empty or not is done at the end of the formula. In the event that birthday is empty, the beginning of your formula will fail. This is because your are performing date/time functions on an empty value, which is not allowed. Move the check for an empty Birthday field to the top of the formula. For instance:
@If(Birthday="";"Ageless";
<<<your formula here>>>)
Do you have comments on this Ask the Expert Q&A? Let us know.
|