View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Doug Doug is offline
external usenet poster
 
Posts: 460
Default Matching with respect to another column?

That works great
--
Thank you!


"Sam Wilson" wrote:

Hi,

There are many ways...

1. VLOOKUP - put this in sheet1 column AB2 and drag down:

=VLOOKUP(P2,Sheet2!P:AB,13,false)

2. SUMIF (if you want to add sheet2, column P figures together like a summary)

= SUMIF(Sheet2!P:P,P2,Sheet2!AB:AB)

there are other ways, those two are the easiest.

Sam

"Doug" wrote:

I have a table in worksheet A, and imported data that is refreshed every half
hour in worksheet B.
I would like to update the data in worksheet A column AB with respect to the
symbols in column P. The data will be pulled from the import data in
worksheet B.
The columns are the same in both worksheet A, and worksheet B to make it
easier.
How can I do this?
--
Thank you!