RDLC Report is showing nothing

29 Views Asked by At

This is my stored procedure:

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

enter image description here

I want to show TaxableAmt, CGSTAmount, SGSTAmt, IGSTAmount values on a RDLC report..

Why is the RDLC report not showing anything?

0

There are 0 best solutions below