Error handling not working as expected

vbaanalyst

New Member
Joined
Feb 8, 2013
Messages
46
I have a simple bit of code for removing blank rows from a data set - it totals each row and tags it with “remove me” if the total is zero– but despite setting up error handling procedures I can’t stop it giving me an error when there are strings in the data and I want to know why!

Sub blank_tagger()

Set my_range = Range("A1:C10")
count_rows = my_range.Rows.Count
count_columns = my_range.Columns.Count

For i = 1 To count_rows
Total = 0
On Error GoTo String_error
For j = 1 To count_columns
Total = Total + Cells(i, j)
Next j
If Total = 0 Then
my_range.Cells(i, 1) = "remove me"
End If
String_error:
Err.Clear
Next i

End Sub

When one of the cells in my range is a text string then I would expect and error since you can’t add a string to a number and sure enough without error handling I receive is “error 13: type mismatch”. The problem is even ‘with’ error handling I receive this message!

I’m not looking for a workaround (using worksheetfunction.sum for example) as the code is fairly trivial – I just want to work out why the error handling doesn’t work!

Sample Data:
123
246
369
51015
721
8 string24
string
102030

<colgroup><col width="64" span="3" style="width:48pt"> </colgroup><tbody>
</tbody>
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
I'm guessing you need to use "on error resume next" and then If err.number <> 0 then err.clear (which should possibly be on error goto 0). Don't know why. Dave
 
Upvote 0
Hi,

You need to replace "On Error GoTo String_error" with "On Error Resume Next".
Also delete "String_error:Err.Clear".
Then it should work as expected.

Jai
 
Upvote 0
I'm guessing you need to use "on error resume next" and then If err.number <> 0 then err.clear (which should possibly be on error goto 0). Don't know why. Dave

Maybe I'm completely misunderstanding how error handling works (I'm pretty new to VBA) but my assumption would be that On error goto x would go to point x in the code then err.clear would clear any error codes? this appears to goto x on the first run, clear the error code - reset the error pointer but then 'not' go to x then next time?
 
Upvote 0
Hi,

You need to replace "On Error GoTo String_error" with "On Error Resume Next".
Also delete "String_error:Err.Clear".
Then it should work as expected.

Jai

Why does on error GoTo 'not' work?
The actual error handling procedure I'd like to carry out is distinctly more complicated and involves manipulating the strings that are in the cells so having a GoTo would be preferable. A further problem with "resume next" is that it tags row containing only strings (see line 9 of example) as "remove me" which is not something I want to do.

I'm more interested in the mechanics of why on error GoTo doesn't work than having a working solution as this is the sort of problem I come across a lot and would like a solution to!
 
Upvote 0
Maybe I'm completely misunderstanding how error handling works (I'm pretty new to VBA) but my assumption would be that On error goto x would go to point x in the code then err.clear would clear any error codes? this appears to goto x on the first run, clear the error code - reset the error pointer but then 'not' go to x then next time?

You also have to do
On Error GoTo 0
After the Err.Clear
This resets Error Handling

Otherwise it thinks it's STILL handling the previous occurance of the error.


Try
Rich (BB code):
Sub blank_tagger()
Set my_range = Range("A1:C10")
count_rows = my_range.Rows.Count
count_columns = my_range.Columns.Count
For i = 1 To count_rows
    Total = 0
    On Error GoTo String_error
    For j = 1 To count_columns

        Total = Total + Cells(i, j)
    Next j
    If Total = 0 Then
        my_range.Cells(i, 1) = "remove me"
    End If
String_error:
    Err.Clear
    On Error GoTo 0
Next i
End Sub
 
Last edited:
Upvote 0
What error(s) are you trying to handle?
 
Upvote 0
I still get the same problem even with the on error goto 0
my code now looks like:
Code:
Sub blank_tagger()


Set my_range = Range("A1:C10")
count_rows = my_range.Rows.Count
count_columns = my_range.Columns.Count


For i = 1 To count_rows
    total = 0 'reset total
    
    
        For j = 1 To count_columns
            On Error GoTo String_error
            total = total + Cells(i, j)
        Next j
        
        If total = 0 Then
            my_range.Cells(i, 1) = "remove me"
        End If
        
String_error:
    Err.Clear
    On Error GoTo 0
Next i


End Sub

In this case the errors I'm trying to handle are if a cell containing a string works its way into a cell used in a calculation (I know you can test for strings with IsNumeric) but more generally I'm trying to work out why using On Error GoTo rarely seems to work if it's within a loop.
 
Last edited:
Upvote 0
Try this.
Code:
For j = 1 To count_columns
            On Error Resume Next
            total = total + Cells(i, j)
            On Error Goto 0
        Next j

PS Have you considered using Application.WorksheetFunction with one of the worksheet count functions?
 
Upvote 0
Try this.
Code:
PS Have you considered using Application.WorksheetFunction with one of the worksheet count functions?[/QUOTE]
Yes, this has been considered
[QUOTE="vbaanalyst, post: 3387693, member: 236205"](I know you can test for strings with IsNumeric) but more generally I'm trying to work out why using On Error GoTo rarely seems to work if it's within a loop.[/QUOTE]

This is more an excersize trying to understand why it's not working.  Not so much needing to find a solution or workaround.


Unfortunately, I don't do alot of error handling.
I tend to evaluate the cause of the "reasonably expected" error, and then do tests for the situation that causes the error.

So I'm also a bit stumped here about why it's not working..It sure looks like it should...
 
Upvote 0

Forum statistics

Threads
1,215,129
Messages
6,123,217
Members
449,091
Latest member
jeremy_bp001

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top