Skip to content

Instantly share code, notes, and snippets.

@jaykilleen
Last active June 9, 2016 05:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jaykilleen/bffa9ac28b30cfab4dbe to your computer and use it in GitHub Desktop.
Save jaykilleen/bffa9ac28b30cfab4dbe to your computer and use it in GitHub Desktop.
Excel VBA to get the row number where a value is found. Use as get_row_number
'Just copy the function below into a new module
'I usually call this module 'functions'
'You can then call anywhere in your scripts `get_row_number("dummy text", 1)
'The integer '1' will tell this to do a ctrl+f on column A
'When it finds the first value it will return the row number of that value
'Best used on columns that contain unique values
'You might need to change the xlPart to xlWhole if you are going for an exact match
'You could also extend this function to pass in a boolean to look for whole or partial value and replace xlPart with the value passed in
`checkout https://gist.github.com/jaykilleen/892d0f0eed87b9f8e6b0 for other functions that I like to add into my 'functions' module.
Function get_row_number(sheet As Worksheet, value As Variant, column As Integer) As Integer
get_row_number = Sheets(sheet.Name).Cells(1, column).EntireColumn.Find(What:=value, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:=False).row
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment