View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default using match in vba without assigning a cell

to use match

sb=application.match

--
Don Guillett
SalesAid Software

"Papa Jonah" wrote in message
...
I am trying to use the match function to assign a value to a variable.
I do not want to put the match syntax in a cell. I just want the result

to
be able to be referred to later in an If then statement. I have tried:

startbase = Match(begbase, "a:a")
but that does not work.

Any suggestions would be appreciated.
TIA