raskew,
This is the only way it works, putting in the string wrapped id double quotation marks.
? Mid("the quick brown fox",1,Len("the quick brown fox")-1) & chr(34) & Mid("the quick brown fox",Len("the quick brown fox"),1)
But if I try this it doesn't work
? Mid(r$,1,Len(r$)-1) & chr(34) &...