Hi mo0ki,
Welcome to the forum!!
Try incorporating the following code into your existing macro or run it as a stand alone solution:
Option Explicit
Sub Macro1()
Dim rngCell As Range
For Each rngCell In Range("B2:E" & Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row) 'Assumes data is in the range B2:E[last row found]. Change to suit.
If Len(rngCell) > 0 Then
On Error Resume Next 'OK to ignore 'Run-time error '13' (i.e. text or errors) error messages
rngCell.Value = rngCell.Value * 1
On Error GoTo 0
End If
Next rngCell
End Sub
Regards,
Robert
Bookmarks