I have a report that counts and sums source codes from membership applications, by chapter. The query is a stored procedure from an SQL server. The result set is fine, but in the report I am getting these results:
Jan Feb Mar May
SourceA 1 3 1 0
SourceB 0 0 1 0
SourceC 2 0 0 1
SourceD 2 1 0 0
What I am trying to get is:
Jan Feb Mar Apr May
SourceA 1 3 1 0 0
SourceB 0 0 1 0 0
SourceC 2 0 0 0 1
SourceD 2 1 0 0 0
In other words a 0 column if no applications were sent in for that month. I really don't want to add a temp table to the SP, and that would require some huge "corporate" involvement. Does anyone have a tip on how I might accomplish this within the report itself?
I am not much of a report writer.
Jan Feb Mar May
SourceA 1 3 1 0
SourceB 0 0 1 0
SourceC 2 0 0 1
SourceD 2 1 0 0
What I am trying to get is:
Jan Feb Mar Apr May
SourceA 1 3 1 0 0
SourceB 0 0 1 0 0
SourceC 2 0 0 0 1
SourceD 2 1 0 0 0
In other words a 0 column if no applications were sent in for that month. I really don't want to add a temp table to the SP, and that would require some huge "corporate" involvement. Does anyone have a tip on how I might accomplish this within the report itself?
I am not much of a report writer.