Why IF formula still returning false even if now time false between user input?
为什么即使现在用户输入之间的时间错误,IF公式仍然返回false?
1 个解决方案
#1
3
With the =Now() formula you are getting back the current date and time. The manually entered times represent the time on 1/1/1900.
使用= Now()公式,您将获得当前日期和时间。手动输入的时间表示19/1/19的时间。
Change your =Now() formula to
将您的= Now()公式更改为
=Now()-Int(Now())
Then it will return the time without the date portion and your comparison will work.
然后它将返回没有日期部分的时间,您的比较将起作用。
#1
3
With the =Now() formula you are getting back the current date and time. The manually entered times represent the time on 1/1/1900.
使用= Now()公式,您将获得当前日期和时间。手动输入的时间表示19/1/19的时间。
Change your =Now() formula to
将您的= Now()公式更改为
=Now()-Int(Now())
Then it will return the time without the date portion and your comparison will work.
然后它将返回没有日期部分的时间,您的比较将起作用。