I'm not used to work in Excel. I have two excel files.
In the first one I have one column with some data let's say hashed passwords.
In the second file I have two columns: the first one contains password as in the first file while the second column contains other information related to the passwords.
I would like to create a sheet having the common passwords between the two files in the first column and the information on the second column (like an intersection).
My formula for the first column looks like this:
=IF(ISERROR(MATCH('path\[filename1]Sheet1'!A2;'path\[filename2]Sheet1'!$A$2:$A$106473;0));"";'path\[filename2]Sheet1'!A2)
While for the second column just the last A2 of the previous formula becomes B2. Dragging the mouse to the cells belows give me the result. Do you think is a good solution? Is there something better I can use to achieve my result?