使用空单元格

时间:2017-02-10 16:29:37

标签: excel date

立即处理项目跟踪器,并在我的最后一个公式上击中偏头痛累积奖金。列F具有目标日期,列G具有交付日期,单元格B1具有报告日期。我试图找到一个公式,告诉我交货日期是否低于目标日期,项目是"目标"或者如果不是"迟到"。这是我可以管理的......对于我的一些项目(未完成)G列是空的,因此我只考虑它们"晚期"如果目标日期(比如应于2017年1月30日到期)与报告日期(2017年2月30日)相比,则其他日期将留空。这就是我要去的地方:

=IF(AND(G5="",F5<$B$1),"late",IF(G5="","",IF(G5<F5,"on target","late")))

谢谢

1 个答案:

答案 0 :(得分:0)

这是否符合您的要求?

// The "Divide_raminAmiri" class. public class Divide_raminAmiri { public static void main (String[] args) { String word; int location; System.out.println ("Enter a word."); word = In.getString (); System.out.println ("Enter the location of the letter."); location = In.getInt (); } // main method public static void test (char c) { System.out.println (word.charAt (location)); } } // Divide_raminAmiri class