View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
R.VENKATARAMAN R.VENKATARAMAN is offline
external usenet poster
 
Posts: 110
Default How do you look for quote marks?

is it not
char(34)


moi wrote in message
...
Better is: stringvar = Chr(34)


"ExcelMonkey" schreef in bericht
...
Normally when you you pass a character to a variable character you pass

it
within in quotes:

stringvar = "g" or
stringvar = "book"

How do you define a quote itself. So if I want to look for ", can I
define
it as a quote character with actaul quotes (i.e. """) ?

stringvar = """

Thanks