I've got some data in several columns in my sheet and want to send it to my access database. I have tried to work with following code:
For Each rngRow In Worksheets("Sheet2").Range("A1:C10").Rows
For Each rngCell In rngRow
MsgBox rngCell.Value
Next
but i can't solve my problem. How can I get the data in each columns in each row?
For Each rngRow In Worksheets("Sheet2").Range("A1:C10").Rows
For Each rngCell In rngRow
MsgBox rngCell.Value
Next
but i can't solve my problem. How can I get the data in each columns in each row?