A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Employees initials



 
 
Thread Tools Display Modes
  #1  
Old August 17th, 2007, 02:32 AM posted to microsoft.public.access.tablesdbdesign
billyradd
external usenet poster
 
Posts: 19
Default Employees initials

What would be the easiest way to pluck the first letter from each persons
first, middle and/or last name and put it together as the person’s initials?
  #2  
Old August 17th, 2007, 06:00 AM posted to microsoft.public.access.tablesdbdesign
Allen Browne
external usenet poster
 
Posts: 11,706
Default Employees initials

Type an expression like this into the Field row in query design:
Initials: Left([FirstName],1) & Left([MiddleName],1) & Left([Surname])

Substitute your field names inside the square brackets.

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"billyradd" wrote in message
news
What would be the easiest way to pluck the first letter from each persons
first, middle and/or last name and put it together as the person’s
initials?


  #3  
Old August 17th, 2007, 05:11 PM posted to microsoft.public.access.tablesdbdesign
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Employees initials

On Thu, 16 Aug 2007 18:32:01 -0700, billyradd
wrote:

What would be the easiest way to pluck the first letter from each persons
first, middle and/or last name and put it together as the person’s initials?


So you can get Jim G. Smith and Jane G. Sanderson both being displayed as JGS?

How would you want such duplicates handled?

John W. Vinson [MVP]
  #4  
Old August 19th, 2007, 12:40 AM posted to microsoft.public.access.tablesdbdesign
billyradd
external usenet poster
 
Posts: 19
Default Employees initials

Thank you very much Allen.

"Allen Browne" wrote:

Type an expression like this into the Field row in query design:
Initials: Left([FirstName],1) & Left([MiddleName],1) & Left([Surname])

Substitute your field names inside the square brackets.

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"billyradd" wrote in message
news
What would be the easiest way to pluck the first letter from each persons
first, middle and/or last name and put it together as the person’s
initials?



  #5  
Old August 19th, 2007, 12:50 AM posted to microsoft.public.access.tablesdbdesign
billyradd
external usenet poster
 
Posts: 19
Default Employees initials

Very good question.
But in this situation is really a non-issue;
It is very typical in the drafting and design industries to use initials to
describe an individual. Even in very large manufacturaing facilities there
are rearly more than 50 to 200 people in one dicipline and the chances of the
initials matching are quite slim but still poosible none-the-less. The
company I work for has roughly 50 people on the payroll and all of the
companies we deel with use initials to represent the 'designer', 'checker' &
'sales_rep'.

"John W. Vinson" wrote:

On Thu, 16 Aug 2007 18:32:01 -0700, billyradd
wrote:

What would be the easiest way to pluck the first letter from each persons
first, middle and/or last name and put it together as the person’s initials?


So you can get Jim G. Smith and Jane G. Sanderson both being displayed as JGS?

How would you want such duplicates handled?

John W. Vinson [MVP]

  #6  
Old August 19th, 2007, 07:36 AM posted to microsoft.public.access.tablesdbdesign
billyradd
external usenet poster
 
Posts: 19
Default Employees initials

Sorry but I'm not exactly sure where I am supposed to put this, could you be
a little more specific?

"Allen Browne" wrote:

Type an expression like this into the Field row in query design:
Initials: Left([FirstName],1) & Left([MiddleName],1) & Left([Surname])

Substitute your field names inside the square brackets.

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"billyradd" wrote in message
news
What would be the easiest way to pluck the first letter from each persons
first, middle and/or last name and put it together as the person’s
initials?



  #7  
Old August 19th, 2007, 12:55 PM posted to microsoft.public.access.tablesdbdesign
Allen Browne
external usenet poster
 
Posts: 11,706
Default Employees initials

Create a query.

Use your table.

Type it in the Field row.

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"billyradd" wrote in message
news
Sorry but I'm not exactly sure where I am supposed to put this, could you
be
a little more specific?

"Allen Browne" wrote:

Type an expression like this into the Field row in query design:
Initials: Left([FirstName],1) & Left([MiddleName],1) &
Left([Surname])

Substitute your field names inside the square brackets.

"billyradd" wrote in message
news
What would be the easiest way to pluck the first letter from each
persons
first, middle and/or last name and put it together as the person’s
initials?


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 06:23 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.