Hey guys,
Little help if you don't mind. Making a mail merge list and the last names for unmarried couple have been pulled out of the database as "Smith/jones." This looks terrible on a letter (the lowercase of the second name). I have tried the following, and it works great in the immediate window, but when I put it into the query, it converts everything to uppercase. Any ideas?
Code:
Replace("Smith/jones","/" & Mid("Smith/jones", InStr("Smith/jones","/")+1,1),StrConv(Mid("Smith/jones",InStr("Smith/jones","/"),2),1))
When I put in the actually field name ([SHIP_TO_LNAME]) in place of "Smith/jones," it just puts everything to upper case.