码迷,mamicode.com
首页 > 编程语言 > 详细

vba 判断是否为数字

时间:2016-06-13 18:52:59      阅读:487      评论:0      收藏:0      [点我收藏+]

标签:

1.先设置单元格为 保留2位小数。

 

2.判断单元格内容

Dim line1 as single

Dim line2 as single

If Cells(2,2).Value = "" Then

  line1 = 0

Else 

  if Not IsNumeric(Cells(2, 2).Text) Then

    MsgBox "Input Data Error!"

  End if

  line1 = Cells(2,2).Value

End if

 

vba 判断是否为数字

标签:

原文地址:http://www.cnblogs.com/sylar-liang/p/5581500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!