I have one master sheet where I have columns:
Name | Type | Role |
---|---|---|
Name1 | S1 | R1 |
Name2 | S2 | R2 |
Name3 | S1 | R3 |
Name4 | S3 | R2 |
Name5 | S1 | R5 |
The requirement is that in sheet 2, I need all the names which has type S1. The output in sheet 2 should be:
Name | Type | Role |
---|---|---|
Name1 | S1 | R1 |
Name3 | S1 | R3 |
Name5 | S1 | R5 |
Please suggest how to do it. I have tried vlookup and index+match. it could not work out for similar name column search. 2. Need to know how to auto -populate the sheet without error based on any name added in master - sheet.
The things which I have tried are:
- I moved the solumn Type to the left as column 1. then I used vlookup("S1",Array size,2,FALSE) It gave me the first name correct as it matched. but when I pull down the cell , the formulae applied with each array value shift and output was not correct. I attached $ as example: A3 -> A$3 to keep the table array same, but it gave me NA in some error when it did not match the S1 for the next row.
Thanks, sbx.