Formula

D

Dave Peterson

Like
=if(a1="asdf*","starts with asdf","doesn't start with asdf")
Nope.

But you could use:
=if(left(a1,4)="asdf", ...

You may want to be more specific about what you're trying to do.
 
Top