Generating an Alpha ID

D

Douglas J Steele

Arvin made a slight typo. He meant:

Update MyTable Set OrganizationID = Left([OrganizationName], 8);

--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)


Arvin Meyer said:
Sure, just use this expression in a query to fill a new column:

Update MyTable Set OrganizationID = Left([OrganizationName]);
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access


I would like to have my OrganizationID be the first 8 letters of the
organization. Can this be done automatically?

[email protected]
 
A

Arvin Meyer [MVP]

Yup, Thanks for getting my back.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access

Douglas J Steele said:
Arvin made a slight typo. He meant:

Update MyTable Set OrganizationID = Left([OrganizationName], 8);

--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)


Arvin Meyer said:
Sure, just use this expression in a query to fill a new column:

Update MyTable Set OrganizationID = Left([OrganizationName]);
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access


I would like to have my OrganizationID be the first 8 letters of the
organization. Can this be done automatically?

[email protected]
 
Top