• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

PLS Help me to Vlookup..

iRasim

Member
Is it possible vlookup automatically?
As in picture in cell c2 I write vlookup to get data from k2.
I want to know if it is possible to make cell d2, e2 and f2 make vlookup automatically to get data from right side? I mean if I write in a cell vlookup formula others make it automatically?
 

Attachments

  • 1.jpg
    1.jpg
    63.4 KB · Views: 14
hi iRasim,

you can do that by putting an array as follows:

=VLOOKUP(B2,$J$2:$N$200,{2,3,4,5},0)

the formula must be entered as an array with Ctrl, Shift and Enter

cheers
kanti
 
Or a non-array formula like:
Code:
=VLOOKUP($B2,$J$2:$N$200,COLUMNS($B$1:C$1),0)
Place in C2 and replace the comma's with semicolons or see attached file.
 

Attachments

  • ExampleF.xlsx
    10.5 KB · Views: 11
Back
Top