If I've for example this table:
a,6,10,22,35,46
b,2,7,11,23,44,78
c,2,10,15,16,32,66,98
d,7,8,10,11,23,25,30
e,23,24
Now I want to search for occurances of a certain value and returns the value of the first column of each corresponding row.
So 2
gives: b,c
. And 23
gives b,d,e
.
Like:
2,b,c
23,b,d,e
Is it possible to achieve this by using the VLOOPUP- or another function?
Thanks!
If you're open to a vba solution, you can create your own function:
just make sure to insert it into a new module
And then you can use it inside the
Worksheet
like so: