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 Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Autofill data based on an assigned code/prefix



 
 
Thread Tools Display Modes
  #1  
Old February 11th, 2010, 05:44 PM posted to microsoft.public.excel.worksheet.functions
anrcreations
external usenet poster
 
Posts: 1
Default Autofill data based on an assigned code/prefix

I am an estimator, and I am trying to make a new template that will allow me
to enter a "smart part number" in column "A" that will find the corresponding
material description from column "K" and re-insert the description in to
column "B"...An alternative for this is to be able to start typing the
beginning of the description in "B" and it auto fill based on the long format
in "K"....
  #2  
Old February 11th, 2010, 07:12 PM posted to microsoft.public.excel.worksheet.functions
Pete_UK
external usenet poster
 
Posts: 8,780
Default Autofill data based on an assigned code/prefix

Do you have a part number in a column to correspond with column K?
Column J perhaps?

If so, then you can use this in say B2:

=IF(A2="","",IF(ISNA(MATCH(A2,J:J,0)),"not
valid",INDEX(K:K,MATCH(A2,J:J,0))))

If your part numbers are not in column J, then change the references
to suit. I have used INDEX/MATCH rather than VLOOKUP in case your
column of part numbers is on the other side of column K - the formula
will still be valid. You will get a blank returned if A2 is blank, and
a "not valid" message if the part number in A2 is not recognised.

Copy the formula down as required.

Hope this helps.

Pete


On Feb 11, 5:44*pm, anrcreations
wrote:
I am an estimator, and I am trying to make a new template that will allow me
to enter a "smart part number" in column "A" that will find the corresponding
material description from column "K" and re-insert the description in to
column "B"...An alternative for this is to be able to start typing the
beginning of the description in "B" and it auto fill based on the long format
in "K"....


  #3  
Old February 11th, 2010, 07:50 PM posted to microsoft.public.excel.worksheet.functions
Luke M
external usenet poster
 
Posts: 2,672
Default Autofill data based on an assigned code/prefix

Check out the VLOOKUP function.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"anrcreations" wrote:

I am an estimator, and I am trying to make a new template that will allow me
to enter a "smart part number" in column "A" that will find the corresponding
material description from column "K" and re-insert the description in to
column "B"...An alternative for this is to be able to start typing the
beginning of the description in "B" and it auto fill based on the long format
in "K"....

 




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 04:56 PM.


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