有没有人在啊,想请讲解下,excel vba 如何判断单元格中是否含有小数点??
If IsNumeric(Cells(i, col)) ThenIf Len(Cells(i, col)) = 10 Or Len(Cells(i, col)) = 11 Or Len(Cells(i, col)) = 12 Then
Else
Cells(i, col).Interior.Color = 255
End If
Else
Cells(i, col).Interior.Color = 255
End If
用IsNumeric函数判断单元格内是否位数字。
单元格出现任何非数字的符号,都将被标红。
但是,如果数字内含有小数点,将不会被标示出来。
怎样标示带有小数点的数字?