Answers for "excel vba vlookup"

VBA
3

excel vba vlookup

Sub vlookup1()
	Dim student_id As Long
	Dim marks As Long
	student_id = 11004
	Set myrange = Range(“B4:D8”)
	marks = Application.WorksheetFunction.VLookup(student_id, myrange, 3, False)
End Sub
Posted by: Guest on August-02-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language