Forum Discussion
Auriana
Sep 03, 2025Occasional Reader
Formula to Autofill Value Based on Another Cell
I solved part of this but not the second part. I have these three columns on a document I am working on. I need a formula to do two things: If Column I lists a frequency (Annual, Biannual, Triannua...
HansVogelaar
Sep 04, 2025MVP
For example:
=IF(I2="TBD", "TBD", IFERROR(EDATE(J2,LOOKUP(I2,{"Annual","Biannual","Triannual"},{12,24,36})),""))
Auriana
Sep 04, 2025Occasional Reader
Perfect, thank you!