formula error query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,
I'm looking for a VBA help if there is a cell with "#DIV0!" error. How can I
track it down and jump over this cell?
I treid Application.WorksheetFunction.IfError but couldn't figure how to use
it.
Thanks a lot.
 
You could use this, but it would skip over any cells with errors, not
just the division by zero errors.
If WorksheetFunction.IsError(ActiveCell) Then
MsgBox "Error"
End If
 

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