是否有用于完成日期时间段标记的快捷方式? [解决!]

问题描述 投票:0回答:1

说我有一个日期和时间的表,它是这个样子:

表由日期和时间:

enter image description here

如果我想从2019年12月4日(下午2点以后)一段时间,直到2019年12月6日下午5点,以显示他们的细胞“完成”这个词,而其他人只是说“不”。我该怎么办?

最终产品应该是这样的。

成品表:

enter image description here

excel excel-formula
1个回答
0
投票

使用下面的公式,然后根据需要在右侧向下拖动。

=IF(AND(B$1+$A2>=DATE(2019,12,4)+TIME(14,0,0),B$1+$A2<=DATE(2019,12,6)+TIME(17,0,0)),"Done","No")

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.