Quick question I think.
but I have some code like
so say textbox1 = A, textbox2 = B and textbox3 = C
X would equal AB Or C
but I need it to be X = "AB" Or "C"
if I try to put quotations marks in I get
X = "N" Or "textbox3"
ANy idea how I do this?
but I have some code like
Code:
N = textbox1 & textbox2
X = N & " Or " textbox3
so say textbox1 = A, textbox2 = B and textbox3 = C
X would equal AB Or C
but I need it to be X = "AB" Or "C"
if I try to put quotations marks in I get
X = "N" Or "textbox3"
ANy idea how I do this?