提问人:ajit bansude 提问时间:4/12/2023 最后编辑:marc_sajit bansude 更新时间:5/5/2023 访问量:23
RDLC 报告未显示任何内容
RDLC Report is showing nothing
问:
这是我的存储过程:
IF (@Action = 'selectbyLocationSummary')
BEGIN
SELECT
SUM(INHD.TaxableAmt),
SUM(INHD.CGSTAmount),
SUM(INHD.SGSTAmt),
SUM(INHD.IGSTAmount)
FROM
InvoiceHD AS INHD
WHERE
INHD.InvoiceDate BETWEEN @fromdate AND @todate
END
我想在 RDLC 报告上显示 TaxableAmt、CGSTAmount、SGSTAmt、IGSTAmount 值。
为什么 RDLC 报告没有显示任何内容?
答: 暂无答案
评论