Hi Folks! I'm sure I'm overlooking an obviouse, but can't put my finger on why quote signs are appearing in the value stored at the below tag's address.
I want stored at Tag is: 12345
I'm getting stored at Tag is: "12345"
'***START***
Dim Tag
Dim VariableRow
VariableRow = 1
'Value entered into cell (1, 1) = 12345
Tag = Cells(VariableRow, 1).Value
'***END***
VB loads "12345" (with quotes) into variable Tag.
What method do I use if I can't have the quotes in my result?
Thanks much for your help!
I want stored at Tag is: 12345
I'm getting stored at Tag is: "12345"
'***START***
Dim Tag
Dim VariableRow
VariableRow = 1
'Value entered into cell (1, 1) = 12345
Tag = Cells(VariableRow, 1).Value
'***END***
VB loads "12345" (with quotes) into variable Tag.
What method do I use if I can't have the quotes in my result?
Thanks much for your help!