Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This does a debug.print foe each cell
Boolean ends ups as "Empty" best wishes -- Bernard Liengme Microsoft Excel MVP http://people.stfx.ca/bliengme Sub tryme2() Set mydata = Selection myrows = mydata.Rows.Count mycols = mydata.Columns.Count Debug.Print ; "-------------" For j = 1 To myrows For k = 1 To mycols thiscell = mydata(j, k) mytype = "Empty" If WorksheetFunction.IsNumber(thiscell) Then mytype = "Number" If Int(thiscell) = thiscell Then mytype = "Integer" End If If WorksheetFunction.IsText(thiscell) Then mytype = "Text" If mydata(j, k).HasFormula Then mytype = "Formula" If WorksheetFunction.IsError(thiscell) Then mytype = "Error value" If IsDate(thiscell) Then mytype = "Date" Debug.Print j; k; mytype Next k Next j End Sub "Subodh" wrote in message ... I have a range of 20 column by 30 rows I want to check all the cells of the selection and then among the selection find out if the cell contains integer or error value or text or some other data type. Thanks in advance. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
To determine if selection range contains empty rows | Excel Programming | |||
Excel ODBC Driver May Determine Wrong Data Type (Q141284) | Excel Programming | |||
Determine data type in a string | Excel Programming | |||
Object Type of a selection... counting rows in a selection | Excel Programming | |||
Determine data type for Pivot Field | Excel Programming |