PC Review


Reply
Thread Tools Rate Thread

Barcode Data - Look up data

 
 
Tom
Guest
Posts: n/a
 
      27th Jan 2007
Scanning barcode data into a cell, say A1, and need to reference this
data to another sheet that has this same data which was imported from
buisness software that has relevent data in the row which I want
transfered to the first sheet into cells A2, A3 ect..

Example: I scan the Job # into Cell A1. For cells A2, A3 etc, I need
to look up data in another sheet referencing the data in Cell A1 (same
Job #) such as PO , Customer, Date... then this data would end up in
A2, A3, etc.

Thanks,
Tom

 
Reply With Quote
 
 
 
 
=?Utf-8?B?a2Fzc2ll?=
Guest
Posts: n/a
 
      27th Jan 2007
And your problem is?
--
Hth

Kassie Kasselman


"Tom" wrote:

> Scanning barcode data into a cell, say A1, and need to reference this
> data to another sheet that has this same data which was imported from
> buisness software that has relevent data in the row which I want
> transfered to the first sheet into cells A2, A3 ect..
>
> Example: I scan the Job # into Cell A1. For cells A2, A3 etc, I need
> to look up data in another sheet referencing the data in Cell A1 (same
> Job #) such as PO , Customer, Date... then this data would end up in
> A2, A3, etc.
>
> Thanks,
> Tom
>
>

 
Reply With Quote
 
Tom
Guest
Posts: n/a
 
      27th Jan 2007
Wanting to use data in one cell of sheet 1 and finding same data in
sheet 2, then copying the data of that row into the first sheet.

On Jan 27, 11:31 am, kassie <kassie_kassel...@xxx.com(Change xxx to
hotmail)> wrote:
> And your problem is?
> --
> Hth
>
> Kassie Kasselman
>
>
>
> "Tom" wrote:
> > Scanning barcode data into a cell, say A1, and need to reference this
> > data to another sheet that has this same data which was imported from
> > buisness software that has relevent data in the row which I want
> > transfered to the first sheet into cells A2, A3 ect..

>
> > Example: I scan the Job # into Cell A1. For cells A2, A3 etc, I need
> > to look up data in another sheet referencing the data in Cell A1 (same
> > Job #) such as PO , Customer, Date... then this data would end up in
> > A2, A3, etc.

>
> > Thanks,
> > Tom- Hide quoted text -- Show quoted text -


 
Reply With Quote
 
=?Utf-8?B?a2Fzc2ll?=
Guest
Posts: n/a
 
      27th Jan 2007
You can use VLOOKUP
With your data in say A2 of Sheet 1, and the other data in Sheet 2, A2:G500,
then in Sheet 1, B2 enter =VLOOKUP(A2,Sheet2!A2:G500,2,FALSE) to read the
data in Sheet 2 B2. Change the 2 to 3 to read the data in Sheet 2, C2 and so
on.

You can also add refinements, such as =IF(A2="","",VLOOKUP...... so that,
until you enter something in A2, B2 will remain blank. Even
=IF(A2="","",IF(ISNA(VLOOKUP(A2,Sheet2!A2:G500,1,FALSE),"No such
record",VLOOKUP(A2,Sheet2!A2:G500,2,FALSE))
--
Hth

Kassie Kasselman


"Tom" wrote:

> Wanting to use data in one cell of sheet 1 and finding same data in
> sheet 2, then copying the data of that row into the first sheet.
>
> On Jan 27, 11:31 am, kassie <kassie_kassel...@xxx.com(Change xxx to
> hotmail)> wrote:
> > And your problem is?
> > --
> > Hth
> >
> > Kassie Kasselman
> >
> >
> >
> > "Tom" wrote:
> > > Scanning barcode data into a cell, say A1, and need to reference this
> > > data to another sheet that has this same data which was imported from
> > > buisness software that has relevent data in the row which I want
> > > transfered to the first sheet into cells A2, A3 ect..

> >
> > > Example: I scan the Job # into Cell A1. For cells A2, A3 etc, I need
> > > to look up data in another sheet referencing the data in Cell A1 (same
> > > Job #) such as PO , Customer, Date... then this data would end up in
> > > A2, A3, etc.

> >
> > > Thanks,
> > > Tom- Hide quoted text -- Show quoted text -

>
>

 
Reply With Quote
 
Tom
Guest
Posts: n/a
 
      27th Jan 2007
That's exactly what I needed. Works perfect.

Many thanks!!!

Tom

On Jan 27, 12:55 pm, kassie <kassie_kassel...@xxx.com(Change xxx to
hotmail)> wrote:
> You can use VLOOKUP
> With your data in say A2 of Sheet 1, and the other data in Sheet 2, A2:G500,
> then in Sheet 1, B2 enter =VLOOKUP(A2,Sheet2!A2:G500,2,FALSE) to read the
> data in Sheet 2 B2. Change the 2 to 3 to read the data in Sheet 2, C2 and so
> on.
>
> You can also add refinements, such as =IF(A2="","",VLOOKUP...... so that,
> until you enter something in A2, B2 will remain blank. Even
> =IF(A2="","",IF(ISNA(VLOOKUP(A2,Sheet2!A2:G500,1,FALSE),"No such
> record",VLOOKUP(A2,Sheet2!A2:G500,2,FALSE))
> --
> Hth
>
> Kassie Kasselman
>
>
>
> "Tom" wrote:
> > Wanting to use data in one cell of sheet 1 and finding same data in
> > sheet 2, then copying the data of that row into the first sheet.

>
> > On Jan 27, 11:31 am, kassie <kassie_kassel...@xxx.com(Change xxx to
> > hotmail)> wrote:
> > > And your problem is?
> > > --
> > > Hth

>
> > > Kassie Kasselman

>
> > > "Tom" wrote:
> > > > Scanning barcode data into a cell, say A1, and need to reference this
> > > > data to another sheet that has this same data which was imported from
> > > > buisness software that has relevent data in the row which I want
> > > > transfered to the first sheet into cells A2, A3 ect..

>
> > > > Example: I scan the Job # into Cell A1. For cells A2, A3 etc, I need
> > > > to look up data in another sheet referencing the data in Cell A1 (same
> > > > Job #) such as PO , Customer, Date... then this data would end up in
> > > > A2, A3, etc.

>
> > > > Thanks,
> > > > Tom- Hide quoted text -- Show quoted text -- Hide quoted text -- Show quoted text -


 
Reply With Quote
 
=?Utf-8?B?a2Fzc2ll?=
Guest
Posts: n/a
 
      28th Jan 2007
Glad I could help!
--
Hth

Kassie Kasselman


"Tom" wrote:

> That's exactly what I needed. Works perfect.
>
> Many thanks!!!
>
> Tom
>
> On Jan 27, 12:55 pm, kassie <kassie_kassel...@xxx.com(Change xxx to
> hotmail)> wrote:
> > You can use VLOOKUP
> > With your data in say A2 of Sheet 1, and the other data in Sheet 2, A2:G500,
> > then in Sheet 1, B2 enter =VLOOKUP(A2,Sheet2!A2:G500,2,FALSE) to read the
> > data in Sheet 2 B2. Change the 2 to 3 to read the data in Sheet 2, C2 and so
> > on.
> >
> > You can also add refinements, such as =IF(A2="","",VLOOKUP...... so that,
> > until you enter something in A2, B2 will remain blank. Even
> > =IF(A2="","",IF(ISNA(VLOOKUP(A2,Sheet2!A2:G500,1,FALSE),"No such
> > record",VLOOKUP(A2,Sheet2!A2:G500,2,FALSE))
> > --
> > Hth
> >
> > Kassie Kasselman
> >
> >
> >
> > "Tom" wrote:
> > > Wanting to use data in one cell of sheet 1 and finding same data in
> > > sheet 2, then copying the data of that row into the first sheet.

> >
> > > On Jan 27, 11:31 am, kassie <kassie_kassel...@xxx.com(Change xxx to
> > > hotmail)> wrote:
> > > > And your problem is?
> > > > --
> > > > Hth

> >
> > > > Kassie Kasselman

> >
> > > > "Tom" wrote:
> > > > > Scanning barcode data into a cell, say A1, and need to reference this
> > > > > data to another sheet that has this same data which was imported from
> > > > > buisness software that has relevent data in the row which I want
> > > > > transfered to the first sheet into cells A2, A3 ect..

> >
> > > > > Example: I scan the Job # into Cell A1. For cells A2, A3 etc, I need
> > > > > to look up data in another sheet referencing the data in Cell A1 (same
> > > > > Job #) such as PO , Customer, Date... then this data would end up in
> > > > > A2, A3, etc.

> >
> > > > > Thanks,
> > > > > Tom- Hide quoted text -- Show quoted text -- Hide quoted text -- Show quoted text -

>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
convert data into barcode BAKERSMAN Microsoft Excel Misc 2 18th May 2009 09:21 AM
convert data into barcode BAKERSMAN Microsoft Excel Misc 0 18th May 2009 09:01 AM
UDF for Data into 128 B barcode problem =?Utf-8?B?U2FmaQ==?= Microsoft Excel Worksheet Functions 1 1st Aug 2006 07:54 PM
Convert Data into Barcode 128 B =?Utf-8?B?U2FmaQ==?= Microsoft Excel Programming 0 23rd Jul 2006 08:47 AM
barcode data parsing Clayton Microsoft Access Database Table Design 1 13th Sep 2004 07:56 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:05 AM.