Brief:
I need to get data out of Excel into $ seperated file. Not a csv. Each row of data should have the same number of columns.
Problem:
I like simple code. Normally I manually loop from top to bottom of an excel sheet by using hard coded values and ensuring activecell.value<>"".
Is there an easy way such as
Dim RowIndex as Integer
Dim ColIndex as Integer
For RowIndex = 1 to ActiveSheet.LastRow
For ColIndex = 1 to ActiveSheet.LastColumn
.... do $ adding code ....
Next
Next
I have the stuff to write to file. I can do the loops I just want to make it read as easy as possible.
Cheers.
Mark.
I need to get data out of Excel into $ seperated file. Not a csv. Each row of data should have the same number of columns.
Problem:
I like simple code. Normally I manually loop from top to bottom of an excel sheet by using hard coded values and ensuring activecell.value<>"".
Is there an easy way such as
Dim RowIndex as Integer
Dim ColIndex as Integer
For RowIndex = 1 to ActiveSheet.LastRow
For ColIndex = 1 to ActiveSheet.LastColumn
.... do $ adding code ....
Next
Next
I have the stuff to write to file. I can do the loops I just want to make it read as easy as possible.
Cheers.
Mark.