Error control no work :(

  • Thread starter Thread starter CodeSponge
  • Start date Start date
C

CodeSponge

This little code snippet is meant to convert all the string numbers to
doubles in part of a list I import from an intranet site and delete the
rows that arn't convertable. Its worked fine for weeks but for some
reason it won't break on the error now. it just pops up a type mismatch
box. Its got me scratching my head. Any ideas?

tank ya,
Shaun


' On Error GoTo ErrorNAN
' For Each ticket In Range( ... ).Rows
' With ticket
' .columns(NATL).Value = CDbl(.columns(NATL).Value) '<==
this is where the error pops up after it fins a work not a number
' .columns(CNUM).Value = CDbl(.columns(CNUM).Value)
' End With
' If False Then
'ErrorNAN: ticket.Delete
' End If
' Next
' On Error GoTo 0
 
In the VBE under Tools=>Options on the General Tab, do you have Break on All
errors selected. You need to have break on unhandled errors selected.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top