Forum Discussion
Claudy_Maple
Jan 31, 2024Copper Contributor
Can I have a specific word (in a cell) generate a formula to another cell?
So I want to make due dates for visits but unsure if the way I am thinking about is even possible. I would want the words "weekly," "bimonthly," "Monthly," and "quarterly," to generate the formu...
HansVogelaar
Jan 31, 2024MVP
=IFS(B2="Weekly", C2+7, B2="Bimonthly", C2+14, B2="Monthly", EDATE(C2, 1), B2="Quarterly", EDATE(C3, 3), B2="Biyearly", EDATE(C2, 6), B2="Yearly", EDATE(C2, 12), TRUE, "")