Hi guys,
I'm trying to turn a name around in a query from Lastname,Firstname to Firstname Lastname...
I've toyed with the InStr function to do this, but it somehow garbles up my output from time to time...
this is the code that I used:
FName: (Right$([Name],InStr([Name],","))) & " " &...