gpt4 book ai didi

excel - 为什么使用IsEmpty()方法时使用Len()方法长度为0的单元格等于False?

转载 作者:行者123 更新时间:2023-12-03 02:18:57 25 4
gpt4 key购买 nike

我有一个单元格,其中有 2 个空格作为单元格中唯一的内容,当我使用 len(trim(cell)) 方法时,它返回长度 0,但如果我使用 IsEmpty(trim(cell)) 它会返回 False。但是,空白单元格上的 IsEmpty() 返回 True。为什么会这样?

我使用的代码是:

MsgBox (IsEmpty(Application.WorksheetFunction.Trim(ThisWorkbook.Worksheets("Sheet1").Cells(1, 1))))
MsgBox (Len(Application.WorksheetFunction.Trim(ThisWorkbook.Worksheets("Sheet1").Cells(1, 1))))

最佳答案

作为微软 points out 、IsEmpty 函数“返回一个 bool 值,指示变量是否已初始化”。因此,显然,空白单元格被视为未初始化,而字符串(即使是空字符串)已初始化。

您可以编写自己的函数来测试空字符串:

    Function IsStringEmpty(s As String) As Boolean
IsStringEmpty = Len(s) = 0
End Function

关于excel - 为什么使用IsEmpty()方法时使用Len()方法长度为0的单元格等于False?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55916909/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com