excel-match

Create New Unique ID Based on Two Columns - Excel

|▌冷眼眸甩不掉的悲伤 提交于 2021-02-11 10:03:47
问题 I have a problem at work where we would take an old SKU number and replace it with a new one. Unfortunately, there are instances where the new SKU number replacing an old SKU number would eventually become an 'old' SKU itself and would be phased out. Below is an example. Old Sku New SKU 06223 34162 06223 34162 06553 01925 06557 19100 06557 19100 06573 11443 06573 11443 51095 06223 51095 06223 With the way I need it formatted for work, I need the three different SKU's to become 1 unique SKU,

Create New Unique ID Based on Two Columns - Excel

醉酒当歌 提交于 2021-02-11 10:02:33
问题 I have a problem at work where we would take an old SKU number and replace it with a new one. Unfortunately, there are instances where the new SKU number replacing an old SKU number would eventually become an 'old' SKU itself and would be phased out. Below is an example. Old Sku New SKU 06223 34162 06223 34162 06553 01925 06557 19100 06557 19100 06573 11443 06573 11443 51095 06223 51095 06223 With the way I need it formatted for work, I need the three different SKU's to become 1 unique SKU,

Match partial data from multiple cells and return value

爷,独闯天下 提交于 2021-02-05 11:38:53
问题 I am trying to match partial data from multiple cells and want value in return. Tried index match and search function but no luck. If anyone can help. Example: Sheet1: Cell "A1": BGRAP1 - Gig0/2/17 BGRAP22 - Gig0/2/16 Cell "A2": BRAMT2 - Gig0/2/0 PTKLP8 - Gig0/2/16 PTKLP1 - Gig0/2/16 PTKLP8 - Gig0/2/17 Cell "B1": S2165 Cell "B2": S2218 Sheet 2: Cell "A1": BGRAP1 Cell "A2": PTKLP8 Cell "A3": BGRAP22 Cell "A4": BRAMT2 Cell "A5": PTKLP8 Cell "A6": PTKLP1 Cell "B1": Gig0/2/17 Cell "B2": Gig0/2/17

How to lookup a value based on two columns (column values are not unique)

戏子无情 提交于 2020-06-23 08:31:55
问题 This is my data: File1 Name School Age Weight Jack St John 15 Jack St Mary 14 Jack St Michael 12 Mary St John 16 Mary St Mary 12 Mary St Michael 15 Raw data Name School Weight Jack St John 80 Jack St Mary 75 Jack St Michael 95 Mary St John 75 Mary St Mary 65 Mary St Michael 80 I want to fetch Weight values referring Raw data. I tried with MATCH and INDEX, however I kept on getting #VALUE! . Any ideas what to use to fetch these Weight values? 回答1: The conventional solution is to use a helper

How to lookup a value based on two columns (column values are not unique)

久未见 提交于 2020-06-23 08:31:48
问题 This is my data: File1 Name School Age Weight Jack St John 15 Jack St Mary 14 Jack St Michael 12 Mary St John 16 Mary St Mary 12 Mary St Michael 15 Raw data Name School Weight Jack St John 80 Jack St Mary 75 Jack St Michael 95 Mary St John 75 Mary St Mary 65 Mary St Michael 80 I want to fetch Weight values referring Raw data. I tried with MATCH and INDEX, however I kept on getting #VALUE! . Any ideas what to use to fetch these Weight values? 回答1: The conventional solution is to use a helper

VLOOKUP together with MATCH

我的未来我决定 提交于 2020-02-25 07:56:27
问题 I have the below lookup condition but can't seem to get it working. =VLOOKUP(A1,'Raw Data'!A1:A3,MATCH('Submitted Data'!B1,'Submitted Data'!A1:B1)) I'm trying to pull in the B column value from Submitted Data into the B column in Raw Data based of a match on A columns, I just keep getting an error. Raw Data A B C 1 L1 23 2 L2 17 3 L7 31 Submitted Data A B 1 L1 Complete 2 L7 Pending 3 L2 Complete 回答1: vlookup does the match for you so you don't need that function. This should work for you:

pulling multiple modules to fulfill a total criteria

China☆狼群 提交于 2019-12-24 18:30:28
问题 I currently have a INDEX+MATCH solution in place that I use to pull out matching criterias.. here is the current setup that I work with :- Have an excel with two sheets, - Data sheet contains an inventory master of sorts where.. we can see each item being displayed with multiple batches in with each of their own quantities depending on where they're stored.. - Sheet 1 is an order form in which my end user would like to get the exact batch of a product on the basis of two criterias.. Criterias

Two column lookup in table array using INDEX and MATCH

有些话、适合烂在心里 提交于 2019-12-17 03:45:47
问题 I would like excel to display the value from table array which has two matching cells com_cd and div_cd using INDEX and MATCH . I have tried the following formula but it did not work. =INDEX(K9:K53,MATCH(K3,I9:I53,0),MATCH(K4,J9:J53,0)) Here is a screenshot of the excel sheet with the desired result given according to com_cd and div_cd 回答1: Try an array formula (CTRL + SHIFT + ENTER) instead of Enter . =INDEX(K9:K53,MATCH(K3&K4,I9:I53&J9:J53,0),1) Not tested but should work. Will edit later

Two column lookup in table array using INDEX and MATCH

六月ゝ 毕业季﹏ 提交于 2019-12-17 03:45:02
问题 I would like excel to display the value from table array which has two matching cells com_cd and div_cd using INDEX and MATCH . I have tried the following formula but it did not work. =INDEX(K9:K53,MATCH(K3,I9:I53,0),MATCH(K4,J9:J53,0)) Here is a screenshot of the excel sheet with the desired result given according to com_cd and div_cd 回答1: Try an array formula (CTRL + SHIFT + ENTER) instead of Enter . =INDEX(K9:K53,MATCH(K3&K4,I9:I53&J9:J53,0),1) Not tested but should work. Will edit later