ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Check for number (https://www.excelbanter.com/excel-programming/285434-check-number.html)

courtesio99[_8_]

Check for number
 
How do I check whether a certain cell has a number in it in code?

For example, i know Count(A1) gives 1 if cell A1 contains a valid
number instead of text. How do I do that in code?

I did the following but could not work:

If Count(Cell(1,1))0 Then
...
End If


---
Message posted from http://www.ExcelForum.com/


bdcrisp[_20_]

Check for number
 
If Cell(1,1).value = 5 then...
et

--
Message posted from http://www.ExcelForum.com


courtesio99[_9_]

Check for number
 
no.. wat i mean is how to check that a number is entered in cell A1
instead of text.


---
Message posted from http://www.ExcelForum.com/


patrick molloy

Check for number
 
if ISNUMERIC(cell(x,y).value) then


Patrick Molloy
Microsoft Excel MVP

-----Original Message-----
How do I check whether a certain cell has a number in it

in code?

For example, i know Count(A1) gives 1 if cell A1

contains a valid
number instead of text. How do I do that in code?

I did the following but could not work:

If Count(Cell(1,1))0 Then
...
End If


---
Message posted from http://www.ExcelForum.com/

.


Norman Harker

Check for number
 
Hi bdcrisp!

Something like:

If IsNumeric(Range("b1")) Then Range("c1") = "You have a number"



--
Regards
Norman Harker MVP (Excel)
Sydney, Australia

Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
"courtesio99" wrote in
message ...
no.. wat i mean is how to check that a number is entered in cell A1
instead of text.


---
Message posted from
http://www.ExcelForum.com/




bdcrisp[_21_]

Check for number
 
if vartype(cells(1,1).value) = vbString then msgbox "It's a string"

otherwise its a number


---
Message posted from http://www.ExcelForum.com/


Colo[_28_]

Check for number
 
Hi courtesio99,

IsNumeric function may can be used.
Note:Assume 3 has been inputted in A1 Cell. Nevertheless the A1 cel
has been formatted as string, IsNumeric function returns TRUE.


Code
-------------------

If IsNumeric([A1]) Then MsgBox "It's a number"

-------------------


--
Message posted from http://www.ExcelForum.com


Dave Peterson[_3_]

Check for number
 
If you may have a containing a text value that looks like a number (like
'54--leading apostrophe), you can use the worksheet function:

if application.isnumber(range("a1").value) then

This'll also dump empty cells.

if isnumeric(range("a1").value) then

will show (empty) as numeric.



courtesio99 wrote:

How do I check whether a certain cell has a number in it in code?

For example, i know Count(A1) gives 1 if cell A1 contains a valid
number instead of text. How do I do that in code?

I did the following but could not work:

If Count(Cell(1,1))0 Then
..
End If

---
Message posted from http://www.ExcelForum.com/


--

Dave Peterson



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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com