Using VLOOKUP()

后端 未结 2 689
广开言路
广开言路 2020-12-07 06:23

I am using Excel\'s VLOOKUP() first time and I am having hard time with it. Here is the screenshot:

\"enter

相关标签:
2条回答
  • 2020-12-07 06:47

    you were very close, vlookup takes teh lookup value first, so change the first C8 to A8

    EDIT: As Barry Houdini points out in comments, also add FALSE as the fourth parameter

    0 讨论(0)
  • 2020-12-07 06:56

    A vlookup looks for a value in the leftmost column of a table and then returns a value from the row that the searched for value is found (how far along that row is determined by you).

    In your example situation, you need to add in the 4th part below (NearOrExact)

    The vlookup formula consists of 4 parts:

    1. SearchFor this is the value that is being searched for. 
    
    2. WhereToSearch this is the range in which to search and in which the answer lives. 
    
    3. WhichColumn this is the column in the WhereToSearch range which has the answer in it. 
    
    4. NearOrExact you decide whether the vlookup should search for a close value or an exact value.
    

    Structure of the vlookup formula: =vlookup ( SearchFor , WhereToSearch , WhichColumn , NearOrExact )

    From <http://www.excelvlookuphelp.com/how-to-use-vlookup/>

    0 讨论(0)
提交回复
热议问题