Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有如下的 If 语句。如果给定值 A 和 B 如下,我想知道为什么条件最终会为真,因为 DateDiff 将始终返回 0 并且 0 不大于 100。我将不胜感激任何评论。
A = "" B = 100 If DateDiff("n", Me.A, Now()) > Val(Me.B) Then End If
datediff 函数返回自 1900 年开始以来的分钟数,该分钟数远大于 100。
我无法让它与 A 的空字符串一起工作