I have a basic 'to-do' list and I want to see how many of my tasks are due today, tomorrow, this week, this month, and this year.
[pre]
[/pre]
I have formulas for today= =COUNTIF(Table2[Due Date],TODAY())
tomorrow =COUNTIF(Table2[Due Date],TODAY()+1)
this week =SUM(IF(Table2[Due Date]>=(TODAY()-WEEKDAY(TODAY(),2)+1),IF(Table2[Due Date]<(TODAY()-WEEKDAY(TODAY(),2)+1+7),1,0),0))
I need help with formulas for this month and this year.
thanks
[pre]
Code:
Project Description Due Date Status
Learn Excel Learn Excel Tables 10/18/12 Pending
Learn Excel Learn Excel Sparklines 10/19/12 Pending
Learn Excel Learn Excel Conditional Formatting 10/19/12 Pending
I have formulas for today= =COUNTIF(Table2[Due Date],TODAY())
tomorrow =COUNTIF(Table2[Due Date],TODAY()+1)
this week =SUM(IF(Table2[Due Date]>=(TODAY()-WEEKDAY(TODAY(),2)+1),IF(Table2[Due Date]<(TODAY()-WEEKDAY(TODAY(),2)+1+7),1,0),0))
I need help with formulas for this month and this year.
thanks