Forum Discussion
Gunnie
May 15, 2024Copper Contributor
Problem with an if formula
Trying to write an If formula. If cell A1 has A then formula A runs is cell C1. If Cell A1 has B then formula B runs in cell C1. This is what I tried but get an =IF(A1="UG",(IF(ISBLANK(B1),"",EDA...
- May 15, 2024
Does this work?
=IF(A1="UG",(IF(ISBLANK(B1),"",EDATE(B1,6))),IF(A1="PS",(IF(ISBLANK(B1),"",EDATE(B1,8)))))
Martin_Angosto
May 15, 2024Iron Contributor
Does this work?
=IF(A1="UG",(IF(ISBLANK(B1),"",EDATE(B1,6))),IF(A1="PS",(IF(ISBLANK(B1),"",EDATE(B1,8)))))
Gunnie
May 16, 2024Copper Contributor
- Martin_AngostoMay 16, 2024Iron Contributor
So glad it worked! Gunnie