Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could try something like this:
Dim vntCol As Variant Dim vntRow As Variant Dim strX As String For Each vntRow In Selection.Rows For Each vntCol In Selection.Columns With ActiveSheet.Cells(vntRow.Row, vntCol.Column) strX = .Value If IsNumeric(strX) = False Then strX = "Row " & CStr(vntRow.Row) & _ ", Column " & CStr(vntCol.Column) & _ " is not numeric." MsgBox strX End If End With Next vntCol Next vntRow Regards, Wes |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Bold Text In Msgbox | Excel Discussion (Misc queries) | |||
VBA MsgBox() Text | Excel Programming | |||
input box , msgbox, formula | Excel Programming | |||
Using different lines in an input- or msgbox | Excel Programming | |||
MsgBox and User Input | Excel Programming |