如何将IsText与VBA一起使用

时间:2018-05-02 21:40:59

标签: excel vba excel-vba

我正在学习VBA并且正在尝试执行代码:

Sub example()

    If IsText(ActiveCell) Then

       MsgBox "Is Text"

    Else: MsgBox "Not Text"

    End If

End Sub

它不起作用,并且给我错误,"编译错误:Sub或Function not defined"使用" IsText"突出显示。如果我交换" IsText"宏可以正常工作for" IsNumeric"。谢谢你的帮助。

1 个答案:

答案 0 :(得分:1)

IsText是一个工作表函数。使用工作表函数将其应用于vba。

{{1}}