ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   checking errors in the formulas (https://www.excelbanter.com/excel-programming/283845-checking-errors-formulas.html)

cawemann[_2_]

checking errors in the formulas
 

i must write a macro that checks errors in formulas and returns
message box saying which cell the error occured on. also it must bee
when the message box opens up. i really need help.:

-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com


Chip Pearson[_2_]

checking errors in the formulas
 
Try something like

Dim ErrCells As Range
Dim Rng As Range
On Error Resume Next
Set ErrCells = ActiveSheet.UsedRange.SpecialCells( _
xlCellTypeFormulas, xlErrors)
On Error GoTo 0
If Not ErrCells Is Nothing Then
For Each Rng In ErrCells
Rng.Select
Beep
MsgBox "Error in cell: " & Rng.Address
Next Rng
End If



--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"cawemann" wrote in
message ...

i must write a macro that checks errors in formulas and returns

a
message box saying which cell the error occured on. also it

must beep
when the message box opens up. i really need help.:(


------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~View and post usenet messages directly from

http://www.ExcelForum.com/




cawemann[_3_]

checking errors in the formulas
 

Lots of thanks for your help Mr. Pearson ! :

-----------------------------------------------
~~ Message posted from http://www.ExcelTip.com
~~View and post usenet messages directly from http://www.ExcelForum.com



All times are GMT +1. The time now is 03:58 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com