Thread: Formula
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Formula

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.



DebVZFr wrote:

Can I use a wildcard in and "IF" formula?


--

Dave Peterson