I am familiar with programming, but not VBA or the excel object model. I am finding it intensely frustrating to deal with.
What I have is a single sheet of data with column headings. There are a variable number of headings depending on the type of data, so I need to find a specific column (in all sheets) that is not always in the same place (so I cannot hardcode it).
I want to create a sheet for each last name, preferably title it with that name, and then copy from the original sheet to each specific sheet, all ROWs with the name
What I have so far:
Cells.find(What:="Last_Name", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
To find the column with the names. I can then sort the column (which isn't totally necessary, but it helps when doing the copying part manually.)
ActiveCell.Sort key1:=ActiveCell, Order1:=xlAscending, Header:=xlYes
but after that I am struggling to find a way to get the unique items into a list or array or something.
I know how to create a sheet with
Set WS = Sheets.Add
WS.name = "string name goes here"
So the main part is finding a way to iterate over the unique names, making sheets and copying appropriate rows into the sheets with the same name in the sheet as in the row.
Any tips to learn VBA or any other way (.Net somehow?) of interfacing with Excel would be very appreciated.