Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I look for a very fast code that will indicates the presence of at least one #N/A, #DIV!....in a range the user select Thanks a lot Avi |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Selection.SpecialCells(xlCellTypeFormulas, 16).Select
HTH, JP On Jan 10, 12:19*pm, avi wrote: Hello, I look for a very fast code that will indicates the presence of at least one #N/A, #DIV!....in a range the user select Thanks a lot Avi |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way
Sub merged() For Each c In Selection If (IsError(c.Value)) Then MsgBox "Error at " & c.Address End If Next End Sub Mike "avi" wrote: Hello, I look for a very fast code that will indicates the presence of at least one #N/A, #DIV!....in a range the user select Thanks a lot Avi |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cell has focus but no indication that it does. | Excel Programming | |||
Indication outside an defined area | Excel Programming | |||
Autofilter indication when being used | Excel Discussion (Misc queries) | |||
indication of empty cell | Excel Worksheet Functions | |||
time indication bar | Excel Programming |