Dec 28, 2021
Quick View: Sub VLOOKUP_with_User_Defined_Lookup_Value() Book = InputBox("Enter the Name of the Book: ") Set Rng = Range("B4:D13") MsgBox Application.WorksheetFunction.VLookup(Book, Rng, 3, False) End Sub Code Breakdown Creates a Macro: VLOOKUP_with_User_Defined_Lookup_Value. Takes the…