Forum Discussion
IF function
- Oct 30, 2017
Hello,
you can use the Find() function for that. Find() will return the position of the found text as a number. If the text is not found, then Find() will return an error. Wrap find into an IsNumber() function and put that into the condition of an IF() statement like this:
=IF(ISNUMBER(FIND("*",C3)),"Late","")
Does that work for you?
Hello,
you can use the Find() function for that. Find() will return the position of the found text as a number. If the text is not found, then Find() will return an error. Wrap find into an IsNumber() function and put that into the condition of an IF() statement like this:
=IF(ISNUMBER(FIND("*",C3)),"Late","")
Does that work for you?
Yes, it worked like a charm.
Thank you so much for your help, I very much appreciate.
Dennis