Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
avi avi is offline
external usenet poster
 
Posts: 195
Default Indication that there is a # cell value in the range

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 897
Default Indication that there is a # cell value in the range

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default Indication that there is a # cell value in the range

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cell has focus but no indication that it does. Jacob Excel Programming 2 May 4th 07 12:58 AM
Indication outside an defined area Hunter_wow Excel Programming 1 August 13th 05 10:16 AM
Autofilter indication when being used Cheese Excel Discussion (Misc queries) 1 July 8th 05 07:18 AM
indication of empty cell haf Excel Worksheet Functions 4 January 12th 05 05:10 PM
time indication bar Jos reulen Excel Programming 0 November 24th 03 10:05 AM


All times are GMT +1. The time now is 10:10 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"