I want to copy multiple columns with the same key from one Excel sheet to another.
Example:
Sheet 1:
123 | a | aa
123 | b | bb
123 | c | cc
234 | d | dd
234 | e | ee
55 | f | ff
123 | g | gg
Sheet 2:
One cell where I put my key; in this case 123
; and I want to have every column from sheet 1 shown on sheet 2, with key 123
.
So it has to look like this on sheet 2:
Key:123
automaticly shown:
123 | a | aa
123 | b | bb
123 | c | cc
123 | g | gg
I guess it is one of the easier things to do, but I am pretty new to Excel.
I do not want to use VBA code. I just want to use normal functions which you put in a cell, like IF
etc.