简体   繁体   中英

Excel Vlookup lookup_value usage

What is difference using lookup_value as value and as range

=VLOOKUP($A2;'new prices'!$A$2:$B$15;2;FALSE) ' in each cell A2:A5
=VLOOKUP($A$2:$A$5;'new prices'!$A$2:$B$15;2;FALSE) ' or  in each cell A2:A5

Result seems the same, so why some people using Ranges in lookup_value, where is difference?

There's no difference except that the $A$2:$A$5 form means you cannot copy the formulas to elsewhere, but is very slightly faster. I would recommended keeping the first form.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM