Anand Iyer
unread,Oct 23, 2020, 8:18:20 AM10/23/20Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Discussion forum for Statistics for Data Science I, Sherlock Holmes, nikita...@onlinedegree.iitm.ac.in
Here's how the google defines its vlookup function.
Searches down the first column of a range for a key and returns the value of a specified cell in the row found.
In your example, "Category" can't be found anywhere in the first column (A) of the range.
Instead, if you give this
=VLOOKUP("Category", B1:E6,2, FALSE)
it'll work. Try it.