Forum Discussion
NZOIA
Jan 28, 2024Copper Contributor
IF Formulas
Can someone help me correct this IF formula? Thanks!
=IF(A1="abc","hello", IF(A1="def","goodbye"), "welcome")
If A1 = abc then put text hello, if A1 = def put text goodbye, otherwise put welcome.
- Hi, I think that is: =IF(A1="abc","Hello",IF(A1="def","goodbye","Welcome"))
- samarmestoCopper ContributorHi, I think that is: =IF(A1="abc","Hello",IF(A1="def","goodbye","Welcome"))
- NZOIACopper ContributorAwesome, thanks, that has done the trick.