shanedavid1981
Programmer
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],","))) & " " & (Left$([Name],InStr(1,[Name],",")-1))
i'm not quite sure where this could go wrong... so any insight would be very much appreciated...
Thanks!
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],","))) & " " & (Left$([Name],InStr(1,[Name],",")-1))
i'm not quite sure where this could go wrong... so any insight would be very much appreciated...
Thanks!