0
我現在的Excel公式是:Excel公式爲小於60,但大於30
=IF([DVT Contract End Dates Days Left]<=0,"Expired",IF([DVT Contract End Dates Days Left]<60,"Expiring soon",""))
我想修改它象下面這樣:
刪除任何天,其小於30標即將過期其中 超過30
我現在的Excel公式是:Excel公式爲小於60,但大於30
=IF([DVT Contract End Dates Days Left]<=0,"Expired",IF([DVT Contract End Dates Days Left]<60,"Expiring soon",""))
我想修改它象下面這樣:
刪除任何天,其小於30標即將過期其中 超過30
試試這個
=IF([DVT Contract End Dates Days Left]<=0,"Expired",IF(AND([DVT Contract End Dates Days Left]>30, [DVT Contract End Dates Days Left]<60),"Expiring soon",""))
這是工作:),非常感謝你伊姆蘭阿里。 – Rush
@對StackOverflow的衝擊如果你接受答案,對作者來說很不錯:) –