I need to find the existence of two dollar signs in a string. I tried
the InStr command but could not make it work:
barcode = "whatever$$asdfa"
twodollarsigns = "$$"
If InStr(barcode,twodollarsigns)=0 Then
MsgBox "there is missing data"
It works with other characters, not the $$. Any ideas on how I can do
this?
Thanks
DG