How to refer to a text piece in a VBA custom function?

  • Thread starter Thread starter FARAZ QURESHI
  • Start date Start date
F

FARAZ QURESHI

I have created some custom functions but am confused how to refer to a piece
of text in the code e.g.:

...." & ABC.Address & "=A

How can I refer "A"? because two inverted commas wouldn't work as:

...." & ABC.Address & ""=A"

Thanx in Advance
 
Try

...." & ABC.Address & "=""A"""



--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Back
Top