How can I combine the following two formulas in one statement:
1) IF([Patient Date of Birth]1 OR [Last Patient Visit Date]1) = BLANK OR NULL)
THEN ([Patient Date of Birth]1 AND [Last Patient Visit Date]1) = "1/1/1940"
2) IF(NETDAYS([Patient Date of Birth]1, [Last Patient Visit Date]1) / 360 > 12, DATE(YEAR([Last Patient Visit Date]1) + 7, MONTH([Last Patient Visit Date]1), DAY([Last Patient Visit Date]1)), DATE(YEAR([Patient Date of Birth]1) + 19, MONTH([Patient Date of Birth]1), DAY([Patient Date of Birth]1))).
what I am trying to do is if that if first statement is true and happens, then replace the values in the second statement with "1/1/1940" and continue to the calculation is statement 2.
Thank you