fmardani
Programmer
- Jul 24, 2003
- 152
Hi,
Currently I have an excel macro which loops through each row of an excel sheet and does several tasks...
I would like to have the same thing in my vb.net application
Can you see if you can make the right changes so that it will work in the vb.net?
For Each KeyRow In Worksheets(1).Rows
If Len(Cells(intRow, 1)) > 0 Then
'Do tasks...
End If
Next
Thanks
Currently I have an excel macro which loops through each row of an excel sheet and does several tasks...
I would like to have the same thing in my vb.net application
Can you see if you can make the right changes so that it will work in the vb.net?
For Each KeyRow In Worksheets(1).Rows
If Len(Cells(intRow, 1)) > 0 Then
'Do tasks...
End If
Next
Thanks