0

我正在使用 QODBC 将 QB 数据提取到 Excel 中。我想要一份按客户汇总销售额的报告。在我开始使用与客户相关联的工作之前,下面的查询是完美的。现在......数据将作业列为客户的单独行,而不是将作业滚动到客户。如果可能,我想按客户对所有销售数据进行分组。

sp_report CustomSummary show Label, Amount parameters DateFrom = {d'2017-01-01'}, DateTo={d'2017-12-31'}, AccountFilterType= 'OrdinaryIncome', SummarizeRowsBy = 'Customer', SummarizeColumnsBy = 'Month'
where RowType='DataRow'
4

1 回答 1

0

请尝试下面列出的存储过程。

sp_report CustomSummary show Label, Amount parameters DateFrom = {d'2021-01-01'}, DateTo={d'2021-12-31'}, AccountFilterType= 'OrdinaryIncome', SummarizeRowsBy = 'Customer', SummarizeColumnsBy = 'Month' where RowType='SubtotalRow'

使用时RowType='SubtotalRow',您应该获得每个客户的所有工作。

于 2017-03-20T14:03:51.293 回答