1

我正在使用的数据是

INC#  Client   Summary     Opened Date     Closed Date  
1     user A   Issue 1      12/18/2006     07/03/2015  
2     user B   Issue 2      04/01/2015     07/02/2015  
3     user C   Issue 3      05/04/2015     05/06/2015 

我想运行一份报告,显示每个月底我们的队列中有多少未处理的票。我需要一个公式来回答“这张票在 2015 年 4 月 30 日是否仍然开放”的问题,然后显示计数

现在,我正在从 Track-IT 获取我们拥有的所有门票!9 已经并且刚刚对 Crystal 报表 XI 中的子票进行了一些过滤。

4

1 回答 1

0

这个 sql 脚本可能会有所帮助

declare @endOfMonths table(endDay datetime);
insert into @endOfMonths values('2015-01-31');
insert into @endOfMonths values('2015-02-28');
insert into @endOfMonths values('2015-03-31');
... -- you may insert these dates within a loop also

select count(*), endDay 
from dataTable
inner join @endOfMonths on endDay between OpenedDate and ClosedDate
group by endDay
order by endDay
于 2015-08-21T23:29:06.933 回答