|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
How to unstring
I have a column in an Access database that contains "last name, first name". I'd like to copy that to a new column that contains "first name last name". Can anyone help?
|
|
#2
|
|||
|
|||
|
Try this, copy and past it into the query "SQL view" and adjust it to your table and field names
UPDATE Table3 SET Table3.NewName = Mid([Table3]![Name],InStr(1,[Table3]![Name]," ")+1) & " " & Left([Table3]![Name],InStr(1,[Table3]![Name]," ")-2); |
![]() |
| Viewing: ASP Free Forums > Database > Microsoft Access Help > How to unstring |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|