Plz i want to merge below two macros into one macro code, so whenever i run that macro, both works together. Thanks
![]()
Sub Delete_Rows() Dim i As Long Application.ScreenUpdating = False With ActiveSheet For i = 100 To 1 Step -1 If .Cells(i, 6) = "" Or .Cells(i, 5) = "TOTAL" Then .Cells(i, 1).EntireRow.Delete Next i End With Application.ScreenUpdating = True End Sub
![]()
Sub ConvertToNumber() With Range("C2:H100") .Value2 = .Value2 End With End Sub
Bookmarks