Data that I'm importing via Data Shuttle includes a date field (named Date Issued) with this format:
2022-01-22T10:30:55.999999889172613350
I added another date field (named Issued Date) where I added this formula to pull out the date only:
=IF([Date Issued]@row <> "", MID([Date Issued]@row, 6, 2) + "/" + MID([Date Issued]@row, 9, 2) + "/" + LEFT([Date Issued]@row, 4), "")
That works great; however, I need another date column (named Reissue Date) in which the date is 3 years in the future of the Issued Date. I have a Renewal Years helper column that has 3 in it. I've tried this formula, but it is not working:
=IFERROR(DATE(YEAR([Issued Date]@row) + [Renewal Years]@row, MONTH([Issued Date]@row), DAY([Issued Date]@row)), "")
I'd appreciate any help about correcting this.
Thank you!
Lori