I wanto concatenate text in the field like MY123, MY234 under same field.
Below are my code:-
mySQL6 = "UPDATE WIPRawDetails SET SerialNumber = SerialNumber & '" & Me.
txtI_SerialNumber & "' WHERE PartNumber= '" & Me.txtPartNumber & "' AND
JobNumber = '" & strJobNumber & "'"
Debug.Print mySQL6
DoCmd.RunSQL mySQL6
I managed to get that but I need a comma to separate it...Can someone help me?
John W. Vinson - 17 Jul 2007 07:09 GMT
>I wanto concatenate text in the field like MY123, MY234 under same field.
As noted in the other thread...
THIS IS A VERY BAD IDEA.
Could you explain *why* you think you want to do this?
John W. Vinson [MVP]