I need to match values (texts) between two columns on two different spreadsheets.
To make it easy I brought them together into one sheet.
Currently I have Column A, B, C, D, E and F from the second (2nd) sheet pasted into the first (1st) sheet. After Column F, everything is related to the original (1st sheet).
I am trying to match data from Column A (2nd sheet data) to Column G (1st sheet data). If there is a match, I want to grab the entire row/columns related to Column G, in this case the information from the 1st Sheet. This is the formula I use and it finds the differences between the two columns, but I cannot figure out how to match it to Column G, and obtain the detailed row with it.
=IF(COUNTIF($A:$A, $G5)=0, "Doesn't Exist", "")
Just to note, the two columns being matched have similar data but are scattered.