Can I use a wildcard in and "IF" formula?
D Dave Peterson Mar 3, 2008 #2 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.
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.