-1
I have two spreadsheets, they have basically the same data, but they are not 100% equal.
I need to take the Id(column A) of the client in worksheet1 and check in the row where it exists in worksheet2(column A), if the Item(column k) of that client in worksheet1 is equal to the Item(column C) in worksheet2.
I need to add only the cases where in the worksheet1 the column L is equal to the text "success".
Planilla1
A - Id | ... | K - Item | L - STATUS |
123 | ... | 1234-5 | Sucesso | <- Mudou Item
124 | ... | 1200-0 | Sucesso | <- Não mudou Item.
987 | ... | 0503-7 | Falha |
Planilla2
A - Id | ... | C - Item |
123 | ... | 1234-0 | <- Item Original
124 | ... | 1200-0 | <- Item Original
987 | ... | 0503-7 |
Expected Result:
Sum: 1.
OBS:
- This sum goes in another result sheet.
- Both worksheets have the same Id’s, arranged in the same order.
I can not see a way to do this, due to the complexity of checking two spreadsheets, two values and making the summation based on a condition.
You want an automatic process (a macro for example) or the steps how to do this in your spreadsheet?
– Ismael
I would like the steps of how to perform this to learn better.
– LP. Gonçalves