Forum Discussion
pacificstorm82
May 23, 2019Copper Contributor
extract specific data from a list
Hello, =IFERROR(INDEX(Input!C:C,MATCH(0,IF($I$2=Input!A:A,COUNTIF($I$2:I3,Input!C:C),""),0)),"") I am using this array formula to sort a list of many different serial numbers into a list containing...
- May 24, 2019I am replying via mobile phone so I can’t test this formula in D3, copied down rows:
=IFERROR(INDEX(B$3:B$100,
AGGREGATE(15,6,
1/((A$3:A$100=D$2)*
(LEFT(B$3:B$100,2)=D$1)*
(COUNTIF(D$2:D2,B$3:B$100)=0))*
(ROW(A$3:A$100)-2),1)),””)
The foregoing formula assumes that the text “AB” is stored in D1 to avoid hard-coding thereof.
pacificstorm82
May 24, 2019Copper Contributor
Find file attached. TY
Twifoo
May 24, 2019Silver Contributor
Please manually enter your desired results in Column F. Then, attach your sample file again. I will work for the formula from there.
- pacificstorm82May 24, 2019Copper Contributor
- TwifooMay 24, 2019Silver ContributorI am replying via mobile phone so I can’t test this formula in D3, copied down rows:
=IFERROR(INDEX(B$3:B$100,
AGGREGATE(15,6,
1/((A$3:A$100=D$2)*
(LEFT(B$3:B$100,2)=D$1)*
(COUNTIF(D$2:D2,B$3:B$100)=0))*
(ROW(A$3:A$100)-2),1)),””)
The foregoing formula assumes that the text “AB” is stored in D1 to avoid hard-coding thereof.- pacificstorm82May 24, 2019Copper Contributor
Please ignore my previous post. Your formula works perfectly. I am not familiar with the use of aggregate but I will research it's functions to see how I can use them further.
Thank you for your responses.