Reporting with Crystal v.10, off MS-SQL Server data …
I have an existing report that counts attendance in our facilities for each day within a parameter date range (up to a month) by funding source, facility, division (not shown) etc. and averages by day:
Oct. 1 2 3 4 5 […] Average
Fac1
Source1 5 5 5 6 5 5
Source2 10 10 10 10 10 10
Fac1Total 15 15 15 16 15 15
The existing report is grouped by Division, Facility, Funding Source, and Client_ID. It’s working fine.
I have been asked to add a budget figure to each of the lines above & to calculate the variance. The budget figures are daily goals by month.
The change should result in the report looking like this:
Oct. 1 2 3 4 5 [….] Average Budget Var.
Fac1
Source1 5 5 5 6 5 5 6 (1)
Source2 10 10 10 10 10 10 10 0
Fac1Totl 15 15 15 16 15 15 16 (1)
My difficulty is that the budget figures are in a table not currently used in the report and that table is structured in such a way as I don’t know how to link to it. It looks something like this below, where “Fund_Type_x” holds the same values as funding source (Source1, Source2, etc.) in the existing report above:
Field Value
Facility (key) Fac1
Fund_Type_1 Source1
Fund_Type_2 Source2
Oct_1 6
Oct_2 10
Oct_1, Oct_2, Oct_3 etc. don’t refer to the days in October, but the funding source budget goals in October per facility, up to six. For each month in a year, there are six fields of “Fund_Type” and six fields of related budget numbers, although there may be only one or two funding sources/budget numbers in use for a given facility. The funding source names can vary in place between facilities, e.g. the same “Source1” funding type could appear in Fund_Type_1 in one facility and Fund_Type_2 in another facility.
The funding source detail currently used in the report is a single field with values that vary by row. The funding source detail in the to-be-added table can be in one of six fields. I’m thinking I have to create six left outer joins to the same new table to test for matching values of funding source, haven't had success getting that far and am uncertain what I'd do next if I figured that much out.
Any help will of course be appreciated and thank you for reading this far.
Brad Macdonald
I have an existing report that counts attendance in our facilities for each day within a parameter date range (up to a month) by funding source, facility, division (not shown) etc. and averages by day:
Oct. 1 2 3 4 5 […] Average
Fac1
Source1 5 5 5 6 5 5
Source2 10 10 10 10 10 10
Fac1Total 15 15 15 16 15 15
The existing report is grouped by Division, Facility, Funding Source, and Client_ID. It’s working fine.
I have been asked to add a budget figure to each of the lines above & to calculate the variance. The budget figures are daily goals by month.
The change should result in the report looking like this:
Oct. 1 2 3 4 5 [….] Average Budget Var.
Fac1
Source1 5 5 5 6 5 5 6 (1)
Source2 10 10 10 10 10 10 10 0
Fac1Totl 15 15 15 16 15 15 16 (1)
My difficulty is that the budget figures are in a table not currently used in the report and that table is structured in such a way as I don’t know how to link to it. It looks something like this below, where “Fund_Type_x” holds the same values as funding source (Source1, Source2, etc.) in the existing report above:
Field Value
Facility (key) Fac1
Fund_Type_1 Source1
Fund_Type_2 Source2
Oct_1 6
Oct_2 10
Oct_1, Oct_2, Oct_3 etc. don’t refer to the days in October, but the funding source budget goals in October per facility, up to six. For each month in a year, there are six fields of “Fund_Type” and six fields of related budget numbers, although there may be only one or two funding sources/budget numbers in use for a given facility. The funding source names can vary in place between facilities, e.g. the same “Source1” funding type could appear in Fund_Type_1 in one facility and Fund_Type_2 in another facility.
The funding source detail currently used in the report is a single field with values that vary by row. The funding source detail in the to-be-added table can be in one of six fields. I’m thinking I have to create six left outer joins to the same new table to test for matching values of funding source, haven't had success getting that far and am uncertain what I'd do next if I figured that much out.
Any help will of course be appreciated and thank you for reading this far.
Brad Macdonald