How do I implement the Excel VLOOKUP worksheet function in Python. Any idea?
|
feedback
|
|
If you are using xlrd to read your Excel XLS file: Get the key column values that need to be searched on:
Search those values to find what you are looking for:
Then you pick out the data cell you want e.g.
Not using xlrd? See here. | |||
|
feedback
|
vlookup, or do you just want to replicate the functionality in something? – Daniel Roseman Nov 9 '10 at 9:37