I have been trying to remove 0 and #N/A" from the cell but when i run the code it gives me an error Type Mismatch.
Can someone please look into the issue that why an error is occur. Your help will be appreciated.
If sht3.Range("B4") = 0 Or "#N/A" Then
sht3.Range("B4") = ""
End If
Application.IsNAbut you need to move the check for0into anElseIf(assuming that the cell can't be any other type of error, e.g. #DIV/0).