I have two spreadsheets, they have basically the same data, but they are not 100% equal.
I need to get the client's Id (column A) on worksheet1 and check on the line where it exists on worksheet2 (column A), if the Item (column k) of that client on worksheet1 is equal to Item (column C) on worksheet2 .
I need to add only the cases where in column 1 the column L is equal to the text "success".
Sheet1
A - Id | ... | K - Item | L - STATUS |
123 | ... | 1234-5 | Sucesso | <- Mudou Item
124 | ... | 1200-0 | Sucesso | <- Não mudou Item.
987 | ... | 0503-7 | Falha |
Sheet2
A - Id | ... | C - Item |
123 | ... | 1234-0 | <- Item Original
124 | ... | 1200-0 | <- Item Original
987 | ... | 0503-7 |
Expected result:
Sum: 1.
OBS:
- This summation goes in another resultsheet.
- The two spreadsheets 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 worksheets, two values, and summing based on one condition.