I have a textbox on a form, its value is determined by a record...
Forms("frmmainnew").Text311.Value = r![F3]
That is working great... but here is the problem. The data from that record is always formatted like this...
", 38972,"
I need to have it formated like this
"38972;"
SO I need the leading ", " dropped. Then all the following ", " turned into ";"
I have tried this...
Forms("frmmainnew").Text311.Value = Replace(r![F3], ", ", ";")
but this changes the text box to this.
;38972,
any ideas?