Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Peter,
Not sure if I understand your question properly or if ryguy has provided the answer you are looking for because I get the feeling you are looking for a VBA answer. However, thought I would post the following example to see if it helps. Note that a space and underscore at the end of a line is a line break in an otherwise single line of code. Dim i As Long For i = 1 To 10 If IsNumeric(Cells(i, 2)) Then MsgBox "Cell " & Cells(i, 2) _ .Address & "= " & Cells(i, 2).Value Else If WorksheetFunction.IsNA(Cells(i, 2)) Then MsgBox "Cell " & Cells(i, 2) _ .Address & "= #N/A" Else MsgBox "Cell " & Cells(i, 2) _ .Address & " Not Numeric or #N/A" End If End If Next i -- Regards, OssieMac |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How To Detect A Negative Number In A Cell | Excel Worksheet Functions | |||
How to detect use of DSNs? | Excel Programming | |||
How to detect row number of selected cells? | Excel Programming | |||
how to detect paste | Excel Programming | |||
How to detect current active sheet number | Excel Programming |