Is there a more efficient way to identify specific errors?

JenniferMurphy

Well-known Member
Joined
Jul 23, 2011
Messages
2,535
Office Version
  1. 365
Platform
  1. Windows
I have a complicated UDF that takes several ranges as parameters. Each of these ranges can have up to 30-40 values. Each of these values must conform to certain limits, which vary depending on the values in the corresponding cells in the other ranges.

The UDF does extensive validity checking to ensure that all of the ranges are of the correct shape and the values meet the requirements. If any of these tests fail, I return a Value error. The problem is trying to figure out which cell caused the error.

One solution I came up with is to include a MsgBox explaining what the error is and where it occurred and then force a breakpoint so I can do further live debugging.

Code:
  MsgBox "message...", , MyName: Stop
  WtdRtg = CVErr(xlErrValue)
  Exit Function

But I do not want this code to be active all the time. Many times I can figure out what the error is, so I don't need it. But the big problem is if the error is caused by a bug in my code, then it will occur on every call, which means that I will have clear dozens or hundreds of MsgBox dialogs or comment them out and then remember to comment them back in.

My next solution was to comment all of the MsgBox statements and only un-comment them if there is an error I cannot find.

Code:
'  MsgBox "message...", , MyName: Stop
  WtdRtg = CVErr(xlErrValue)
  Exit Function

But this is not ideal, either. I have 8-10 calls to MsgBox, so I'd have to find them all and then re-comment them out after I find the bug. My next solution was to add a switch that is either a constant or a parameter to turn all of the MsgBox statements on in one swell foop.

Code:
  Const MsgSw as Boolean = False  'Turn MsgBox off
  Const MsgSw as Boolean = True   'Turn MsgBox on

  . . .

  If MsgSw then MsgBox "message...", , MyName: Stop
  WtdRtg = CVErr(xlErrValue)
  Exit Function

Once the code is fairly stable, I can comment out these statements to improve efficiency and un-comment them if the need arises later.

Two questions:
  1. Is this method inefficient? None of this code will be inside a loop of more than 30-40 iterations
  2. Is there a better way

Thanks
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Hi

For debug I use compiler directives.
It's more efficient because the code is not executed if the directive conditions fails.

This is a simple example:

Code:
Option Explicit

' compiler directive
[URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=Const]#Const[/URL]  CheckValue = False

Sub Test()
Dim v As Variant

v = Range("A1").Value

[URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=If][URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=IF]#IF[/URL] [/URL]  CheckValue Then
    If v <= 0 Then
        MsgBox "Number in A1 must be positive"
        Exit Sub
    End If
[URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=End][URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=END]#END[/URL] [/URL]  If

Range("A1").Value = v + 1

End Sub

Notice that if the compiler directive is False the code inside the [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=IF]#IF [/URL] [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=END]#END [/URL] IF is not executed. It is as if it's not there.
 
Upvote 0

Forum statistics

Threads
1,215,514
Messages
6,125,271
Members
449,219
Latest member
daynle

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