Mark Drayton
New member
- Local time
- Today, 13:15
- Joined
- May 20, 2004
- Messages
- 7
Hi,
I'm trying to update a table from an Update Query. In summary, I want the user to enter the full manager's name and an Expression to populate a separate field with their first name. I have managed to separate the first name, but am having problems in getting it to update the table.
This is the SQL query text:
SELECT MasterData.Home, MasterData.Email, MasterData.[Home Manager], Left([Home Manager],InStr([Home Manager]," ")) AS [Home Manager First]
FROM tblSelectID INNER JOIN MasterData ON tblSelectID.ID = MasterData.[Sun T1];
Query:
Leeds - john.smith@blah.com - John Smith - John (Expr)
Table:
Home - Email - Home Manager - Home Managers First
Have already tried to select Home Managers First as the update record.
Hope you can help
Many Thanks
Mark
I'm trying to update a table from an Update Query. In summary, I want the user to enter the full manager's name and an Expression to populate a separate field with their first name. I have managed to separate the first name, but am having problems in getting it to update the table.
This is the SQL query text:
SELECT MasterData.Home, MasterData.Email, MasterData.[Home Manager], Left([Home Manager],InStr([Home Manager]," ")) AS [Home Manager First]
FROM tblSelectID INNER JOIN MasterData ON tblSelectID.ID = MasterData.[Sun T1];
Query:
Leeds - john.smith@blah.com - John Smith - John (Expr)
Table:
Home - Email - Home Manager - Home Managers First
Have already tried to select Home Managers First as the update record.
Hope you can help
Many Thanks
Mark