Athirst5IoN
New Member
- Joined
- Mar 4, 2011
- Messages
- 5
I am working with two sheets. One named RawData where I have imported data, and the main page I am using to work with the data.
I am trying to fill a column on the main page by comparing data in two columns and pulling over data from a corresponding third column. For example:
(Main)
Product Version Owner
a 1
b 3
c 4
(RawData)
id Product Owner Version
321 a john 2
516 a tim 1
123 b alex 3
984 c matt 2
195 b john 6
865 c alex 4
~ keep in mind there is much more info than this, but im just making a few simple columns for the example.
I want the cells in Main column C to be filled with the correct persons name that is in the same row as the correct Product and Version. Keep in mind I cannot just simply make a cell equal to another cell since the RawData sheet has thousands of rows of data. This is what I have so far:
=INDEX(RawData!C:C,MATCH(1,(A2=RawData!B:B)*(B2=RawData!D:D),0))
I'm fairly new at working with formulas and queries in excel. Could anyone help me with this?
Thanks in advance
I am trying to fill a column on the main page by comparing data in two columns and pulling over data from a corresponding third column. For example:
(Main)
Product Version Owner
a 1
b 3
c 4
(RawData)
id Product Owner Version
321 a john 2
516 a tim 1
123 b alex 3
984 c matt 2
195 b john 6
865 c alex 4
~ keep in mind there is much more info than this, but im just making a few simple columns for the example.
I want the cells in Main column C to be filled with the correct persons name that is in the same row as the correct Product and Version. Keep in mind I cannot just simply make a cell equal to another cell since the RawData sheet has thousands of rows of data. This is what I have so far:
=INDEX(RawData!C:C,MATCH(1,(A2=RawData!B:B)*(B2=RawData!D:D),0))
I'm fairly new at working with formulas and queries in excel. Could anyone help me with this?
Thanks in advance
Last edited: