Here is the problem.
I want to sort rows of information by a column using a macro.
The only problem is that there is no set of rows. One time there sould be 4 rows, another day there could be 45
I have the following code so far:
rows.Worksheets("DB".Range("?????????".Sort _
key1:=Worksheets("DB".Range("????"
Set currentCell = Worksheets("DB".Range("????"
I want to sort by Column L then by Column R
I am thinking that before I sort, I should count how many rows there are in the worksheet. Then I could do something with that information.
Any info would be appreciated!!
I want to sort rows of information by a column using a macro.
The only problem is that there is no set of rows. One time there sould be 4 rows, another day there could be 45
I have the following code so far:
rows.Worksheets("DB".Range("?????????".Sort _
key1:=Worksheets("DB".Range("????"
Set currentCell = Worksheets("DB".Range("????"
I want to sort by Column L then by Column R
I am thinking that before I sort, I should count how many rows there are in the worksheet. Then I could do something with that information.
Any info would be appreciated!!