Plz i want to merge below two macros into one macro code, so whenever i run that macro, both works together. Thanks
Code:
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
Code:
Sub ConvertToNumber()
Dim LR As Long
LR = cells(rows.Count, 2).end(xlup).Row
Range ("C2:C" & LR).TextToColumns
End Sub