I'm attempting to create a macro to do the following:
- Search a spreadsheet column header by name.
- Select all data from the selected column, except column header.
- Take Number Stored As Text & Convert to Number.
- Converting to Number to use for VLookup.
For Example:
Visual Spreadsheet Example:
I've discovered the following code online:
With ActiveSheet.UsedRange
Set c = .Find("Employee ID", LookIn:=xlValues)
If Not c Is Nothing Then
ActiveSheet.Range(c.Address).Offset(1, 0).Select
End If
End With
However, I'm still experiencing some issues.