Hello,
I am trying to select a cell in the last row that does not contain a 0. It is taking me to Row 54 but I want it to go to Row 37. The method I know is to go to a cell at the bottom of the sheet and "xlUp" so it will find the first value it finds. I want to do this but want to ignore all of the "0's" till it arrives at value "3.3" in Row 37.
Any method that would solve this would be greatly appreciated.
I am trying to select a cell in the last row that does not contain a 0. It is taking me to Row 54 but I want it to go to Row 37. The method I know is to go to a cell at the bottom of the sheet and "xlUp" so it will find the first value it finds. I want to do this but want to ignore all of the "0's" till it arrives at value "3.3" in Row 37.
Any method that would solve this would be greatly appreciated.
VBA Code:
Private Sub UpdateButton_Click()
NewRow = ActiveSheet.Cells(1000, 3).End(xlUp).Row 'Goes to the last updated cell
ActiveSheet.Cells(NewRow, 3).Select
End Sub