Forum Discussion
JennyHoA20181
Apr 24, 2023Brass Contributor
If formula for contains specific text
Hello all! Please can you advise how to construct the formula in COLUMN F attached to show: IF Program: Account Name Contains "Executive" then "Exec", ELSEIF Degree Level = Undergraduate then...
- Apr 24, 2023
=IF(ISNUMBER(SEARCH("executive",E2)),"exec",IF(D2="Undergraduate","UG",IF(D2="Postgraduate","PG","")))
Does this formula return the intended result?
OliverScheurich
Apr 24, 2023Gold Contributor
=IF(ISNUMBER(SEARCH("executive",E2)),"exec",IF(D2="Undergraduate","UG",IF(D2="Postgraduate","PG","")))
Does this formula return the intended result?
- JennyHoA20181Apr 24, 2023Brass ContributorIt works well! Thank you very much for your fast response, much appreciated!