I have an Excel sheets that contains three columns.
Column A = First Name
Column B = Last Name
Column C = State
I created a ListView and have created the 3 column headers.
However, I don't know how to populate all the columns. Do I need to assign a key to each column? If so, how? I appreciate any help.
I know how to populate the first column. Here's my code for that.
Dim cell As Range
With lvAgreements
For Each cell In Range("A1:A14")
.ListItems.Add , , cell
Next cell
End With
Thanks again for any help.
Column A = First Name
Column B = Last Name
Column C = State
I created a ListView and have created the 3 column headers.
However, I don't know how to populate all the columns. Do I need to assign a key to each column? If so, how? I appreciate any help.
I know how to populate the first column. Here's my code for that.
Dim cell As Range
With lvAgreements
For Each cell In Range("A1:A14")
.ListItems.Add , , cell
Next cell
End With
Thanks again for any help.