PC Review


Reply
Thread Tools Rate Thread

Compare Old & New Product List (i.e. VLOOKUP)

 
 
Hal
Guest
Posts: n/a
 
      6th Jul 2006
Hello,

Once a week I receive an updated price list from our supplier reflecting
newly added products, deleted products, and new pricing for certain products
in an Excel spreadsheet format. The list consists of approx. 1,500
products.

Is there a way to compare the Old list with the New one and somehow identify
the new changes in a few quick steps? Someone mentioned using "VLOOKUP" but
I'm not too familiar with it. Any help will be greatly appreciated.

Thank you in advance.

cww


 
Reply With Quote
 
 
 
 
=?Utf-8?B?Sm9zaCBDcmFpZw==?=
Guest
Posts: n/a
 
      6th Jul 2006
It really depends on exactly how you want to compare the data.

Let's say each list has a product name and price:
old list new list
sheet1: sheet2:
name1 2.30 name4 2.20
name2 4.10 name3 4.10
name3 0.10 name1 0.20
name4 1.00 name2 1.00

If you wanted to compare to see if the price was the same on items in both
sheets you could do this in say column C on sheet1:

=IF(b1=VLOOKUP(A1,Sheet2!A$1:B$4,2,FALSE), "same price","price changed")

Then fill down.

The VLOOKUP command tells excel to find the value from A1 in the table of
new prices on Sheet2 and return the value from column 2 on Sheet2. Then it's
just a matter of comparing this value to the old price (B1 in my example)...

There's plenty of other things you could do to compare just depends on
exactly what you want.

Hope that makes sense.

"Hal" wrote:

> Hello,
>
> Once a week I receive an updated price list from our supplier reflecting
> newly added products, deleted products, and new pricing for certain products
> in an Excel spreadsheet format. The list consists of approx. 1,500
> products.
>
> Is there a way to compare the Old list with the New one and somehow identify
> the new changes in a few quick steps? Someone mentioned using "VLOOKUP" but
> I'm not too familiar with it. Any help will be greatly appreciated.
>
> Thank you in advance.
>
> cww
>
>
>

 
Reply With Quote
 
=?Utf-8?B?VG9wcGVycw==?=
Guest
Posts: n/a
 
      6th Jul 2006
As a start:

Assume Oldlist and Newlist are in Column A of sheets 1 & 2 and OldPriceList
is Column B of sheet1.

Highlight column A sheet1 and do Insert==>Name==>Define==>Oldlist
Highlight column B sheet1 and do Insert==>Name==>Define==>OldPricelist
Highlight column A sheet2 and do Insert==>Name==>Define==>Newlist

Assuming data starts in row 1:

In C1 of Sheet1 put =IF(COUNTIF(Newlist,A1)=0,"Deleted","") and copy down

This will highlight producs Deleted

in C1 of sheet2 put =IF(COUNTIF(OldList,A1)=0,"Added","") and copy down

This will highlight products Added

For products which have price changes:

In D1 of sheet2 put:

=IF(ISERROR(MATCH(A1,OldList,0)),"",IF(INDEX(OldPriceList,MATCH(A1,OldList,0))<>B1,"Price Changed",""))

and copy down

HTH

"Hal" wrote:

> Hello,
>
> Once a week I receive an updated price list from our supplier reflecting
> newly added products, deleted products, and new pricing for certain products
> in an Excel spreadsheet format. The list consists of approx. 1,500
> products.
>
> Is there a way to compare the Old list with the New one and somehow identify
> the new changes in a few quick steps? Someone mentioned using "VLOOKUP" but
> I'm not too familiar with it. Any help will be greatly appreciated.
>
> Thank you in advance.
>
> cww
>
>
>

 
Reply With Quote
 
Hal
Guest
Posts: n/a
 
      6th Jul 2006
Thank you so much for your quick response! I will get started on it.

cww


"Hal" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hello,
>
> Once a week I receive an updated price list from our supplier reflecting
> newly added products, deleted products, and new pricing for certain

products
> in an Excel spreadsheet format. The list consists of approx. 1,500
> products.
>
> Is there a way to compare the Old list with the New one and somehow

identify
> the new changes in a few quick steps? Someone mentioned using "VLOOKUP"

but
> I'm not too familiar with it. Any help will be greatly appreciated.
>
> Thank you in advance.
>
> cww
>
>
>



 
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
Sumif using Vlookup to compare a separate list petrons@hotmail.com Microsoft Excel Misc 4 19th Dec 2007 06:32 AM
Vlookup code product and to copy commentary with photo of the product in vba ancasa@gmail.com Microsoft Excel Programming 1 14th Nov 2006 09:11 AM
how can I compare different vendor prices when some same product =?Utf-8?B?TWFuYWdlciB0aGF0IG5lZWRzIGhlbHA=?= Microsoft Access Getting Started 1 22nd Mar 2006 04:00 PM
Compare prices on Any Product David Goldstein Computer Hardware 0 16th Aug 2005 02:29 AM
Compare prices on Any Product David Goldstein Computer Hardware 0 16th Aug 2005 02:28 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:38 PM.