对于以下问题,我错误地要求在 CR 中进行审查,但他们告诉我不是正确的地方,所以我向您提出了同样的问题。
我一个人找不到答案。这个非常简单的代码返回 2 个不同的结果,为什么?!?!我会疯的...
Function FirstDay(t As String) As Boolean
d = DateSerial(Left(t, 4), Mid(t, 5, 2), Right(t, 2)) - 1
FirstDay = False
Var = Application.Match(d, Worksheets("Diary").Columns(1), 0)
If Not IsError(Var) Then
FirstDay = True
End If
'this only to check if direct match Val to cell() retrieve the same result
If d = Sheets("Diary").Range("A12") Then Debug.Print "Yes" Else Debug.Print "no"
End Function
FirstDay("20161107")
我用我的范围调用我的函数sh("Diary").(columns(1))
是
(date,01/01/2016,07/02/2016,06/03/2016,03/04/2016,08/05/2016,05/06/2016,03/07/2016,07/08/2016,04/09/2016,02/10/2016,06/11/2016,04/12/2016)
Var 应该是 12 但我检索 Error2042 然后 FirstDay = false,但如果我在即时窗口上看到字符串
If d = Sheets("Diary").Range("A12") Then Debug.Print "Yes" Else Debug.Print "no"
检索“是”
有人可以让我知道什么是附加的吗?感谢法布里齐奥