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.
使用 Excel,我想创建一个条件日期公式,如下所示:
如果日期大于或等于 2013 年 1 月 18 日,请在此单元格中输入 $220.00。
这可能吗?
谢谢
如果单元格 A1 包含日期,请在另一个单元格中尝试此公式
=IF(A1>=DATE(2013,1,18),220,"")
将公式单元格格式化为货币
尝试这个:
=IF(A1>DATEVALUE("17/1/2012"),220)