Is there a way to limit MsgBox messages?

JenniferMurphy

Well-known Member
Joined
Jul 23, 2011
Messages
2,676
Office Version
  1. 365
Platform
  1. Windows
I'm doing a little re-engineering of my personal add-in module. I am making changes to several functions. Some of these are incompatible with way the function used to work. I don't know where all of the function calls are (which workbooks and sheets), so I am putting MsgBox calls to tell the user to change the call. The problem is, if that function is called 100 or 1,000 times on a sheet, the user will have to clear 100 or 1,000 messages before they can make the changes.

Is there a better way?

Is there a way to limit number of MsgBox messages to just the first one in each sheet?
 

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,)
Maybe just highlight them, and have a single message box at the end telling them there are errors to correct.
Or maybe have a sheet called something like "Error Log" and write all the pertinent details to that, which they can use to review and correct them.
 
Last edited:
Upvote 0
Maybe just highlight them, and have a single message box at the end telling them there are errors to correct.
Or maybe have a sheet called something like "Error Log" and write all the pertinent details to that, which they can use to review and correct them.

I don't understand what you mean by "highlight". Are you saying that I have the function change the color or fill or make it flashing, something like that?

I don't know how to generate a "single message at the end". How do I know when it's "the end"? Many of these functions do some sort of conversion. One of them converts a number from feet to feet and inches. It could be used in a table where it is called from 10, 100, or more cells. How can the UDF know when it's the last call?

Thanks
 
Upvote 0
Is there a way to search all workbooks for that UDF call? I tried the Windows XP search facility with "*.xls*" in the filename field and "=CvtFt2FtIn(" in the "Containing text" field. It found 0 hits even though I know there are several workbooks that use this UDF.

Is there another way to search all workbooks for a function call?
 
Last edited:
Upvote 0
OK. I think I may have misunderstood your original question.

I am putting MsgBox calls to tell the user to change the call.
How exactly are you doing this? If you have VBA code, can you post it here?
 
Upvote 0
You could declare a Public string array in which each of the messages originally stored in a msgbox are kept. Then at the end of the procedure, have something like this:
Code:
Dim i As Long
Dim j As String


j = callarray(0) & vbNewLine


For i = 1 To UBound(callarray)
    
    j = j & callarray(i) & vbNewLine


Next i


MsgBox j

CallArray would initially be declared as CallArray(), and each time a new call is added it would be redeclared as CallArray(0 to UBound(CallArray) + 1), and the call stored in the new UBound(CallArray)
 
Upvote 0
You could declare a Public string array in which each of the messages originally stored in a msgbox are kept. Then at the end of the procedure, have something like this:
Code:
Dim i As Long
Dim j As String


j = callarray(0) & vbNewLine


For i = 1 To UBound(callarray)
    
    j = j & callarray(i) & vbNewLine


Next i


MsgBox j

CallArray would initially be declared as CallArray(), and each time a new call is added it would be redeclared as CallArray(0 to UBound(CallArray) + 1), and the call stored in the new UBound(CallArray)


Yep, I'll probably have to do something like that. Thanks for the template.
 
Upvote 0

Forum statistics

Threads
1,223,103
Messages
6,170,123
Members
452,303
Latest member
c4cstore

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