我正在尝试制定一份IF
声明并迷路。我确定我现在已经起床太久了,但我就是看不到它。
这是场景:
I have a given date in E1, say June 21st (my payday).
I have a day of the month in C22 say the 11th of the month (the day a bill is due).
I have a $value in D22 (the value of the bill).
如果账单在 E1 中的日期或之后并且在 E1 + 14 天(我的下一个发薪日)之前到期,我需要一个 if 语句。
这是我尝试过的(注意它有点因实验而受损):
=IF(AND(DATE(YEAR(E$1),MONTH(E$1),DAY($C22))>=E$1,DATE(YEAR(E$1),MONTH(E$1),DAY(E$1)+14))>DATE(YEAR(E$1),MONTH(E$1),DAY($C22)),$D22,"")
谁能帮我?