So I have a formula at the moment which is this
Now the problem I have is that I want to add data where the date will not be 15/03/2011. I have created a new column (D) on 'Sheet1' where the date is converted to the format yyyy,mm,dd.
The row numbers in Sheet 1 correspond to the row number in issues. So Sheet1!D2 = "2011,03,15"
So I need to tweak my formula so that it users the appropriate cell as it's date reference rather than manually inputting it.
Thanks in advance
Code:
=COUNTIFS(issuesdata!$C$2:$C$8479,">"&DATE(2011,3,15),issuesdata!$A$2:$A$8479,Issues!$A2)
Now the problem I have is that I want to add data where the date will not be 15/03/2011. I have created a new column (D) on 'Sheet1' where the date is converted to the format yyyy,mm,dd.
The row numbers in Sheet 1 correspond to the row number in issues. So Sheet1!D2 = "2011,03,15"
So I need to tweak my formula so that it users the appropriate cell as it's date reference rather than manually inputting it.
Thanks in advance