krazykasper
Registered User.
- Local time
- Today, 11:22
- Joined
- Feb 6, 2007
- Messages
- 35
I'm trying to split a name field in my ODBC table into first name last name and change the case to "proper". The table field {OptimizeIt.OrderRepName} is one field formatted as lastname, mi, firstname
I started using the following code which gives me the last name but not sure where to go from here. Appreciate any help you can provide.
local StringVar Array Names1:=
Split({OptimizeIt.OrderRepName}, " ")[-1];
ProperCase(Names1[Ubound(Names1)]);
Thanks,
Krazy (Bill) Kasper
I started using the following code which gives me the last name but not sure where to go from here. Appreciate any help you can provide.
local StringVar Array Names1:=
Split({OptimizeIt.OrderRepName}, " ")[-1];
ProperCase(Names1[Ubound(Names1)]);
Thanks,
Krazy (Bill) Kasper