I have a stored procedure that returns a simple table with the following columns:Type char, Period date, Amount moneyIn my RDL report definition, I have two column groups. The first groups on 'Type' with filter set to "Type= 'I'". The second groups on 'Period' with filter set to "Type='H'".Running the procedure in SSMS, the result set includes records as follows:Type Period Amount----- ------------- --------- I 2014-12-31 $500 I 2014-11-30 $200 H 2014-12-31 $1500 H 2014-12-31 $300 H 2014-11-30 $2300 H 2014-10-31 $1400 H 2014-09-30 $700and so on...However, when I run the report, it only includes periods of November, October and September and omits all records from the month of December, even though the stored procedure returns 2 'H' records in December.There are no filters defined for the report other than those specified for the column groups. I even tried re-creating the report with nothing but the two column groups as specified and I get the exact same result.
↧