I two spreadsheets in which I use the same macro, but for one of the spreadsheets I lose a row of data that is needed. Here is a simple example:
Spreadsheet 1
A B C
12345 500 200
12453 500 300
145263 600 700
1200
Spreadsheet 2
A B C
12745 200 100
12453 550 350
14533 600 600
Here is my code
For the first spreadsheet this works fine. I removes the data in the last row, but for the second spreadsheet, since there is not data in the last row, the program selects the selected row and the row above then deletes the data. In the example above it would delete the last line containing
14533 600 600. I need that row. Should I change the above or should I do a check for data in the last row cell C and then have the code do something based on that?
Thanks
Spreadsheet 1
A B C
12345 500 200
12453 500 300
145263 600 700
1200
Spreadsheet 2
A B C
12745 200 100
12453 550 350
14533 600 600
Here is my code
Code:
Sub FindLastRow()
Dim LastRow As Long
Dim wlast As Integer
LastRow = Cells(Cells.Rows.Count, "A").End(xlUp).Offset(1).Row
wlast = LastRow
Range("a" & LastRow).Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.ClearContents
End Sub
For the first spreadsheet this works fine. I removes the data in the last row, but for the second spreadsheet, since there is not data in the last row, the program selects the selected row and the row above then deletes the data. In the example above it would delete the last line containing
14533 600 600. I need that row. Should I change the above or should I do a check for data in the last row cell C and then have the code do something based on that?
Thanks