G
Guest
Hi
Hope some one can help me with this. I am required to create in 1 report showing 3 sections of information
----------- report details -----------------------
Total Number of Applications : [###] ---- section
Type of Business Number of Application
-----------------------------------------
[Business 1] [###] ---- section
[Business 2] [###
[etc.. ] [###
Receipt Method Numbe
-------------------------
[Method 1] [###] ----- section
[Method 2] [###
[etc... ] [###
------------- end of report details ---------------
Here is my Report >> Record Souce query and its results
SELECT * FROM [SELECT count(*), 'Total_Number', 1 FROM Busines
UNION SELECT count(*), BusinessType, 2 FROM Business GROUP BY BusinessTyp
UNION SELECT count(*), [Receipt Method], 3 FROM Business GROUP BY [Receipt Method]
]. AS [%$##@_Alias] ORDER BY 3, 2
Expr1000 Expr1001 Expr100
------------------------------------------------
10 Total_Number 1 {section 1 data
2 Exhibits 2 {section 2 data}
8 Community 2 { "
9 Mail 3 {section 3 data
1 Email 3 { "
I have all 3 sections defined in the Reports Details of the report. Question is how do I bind the control source of each [ ] textboxes so that it displays its associated section data only. What is happening is that Sections(1,2,3) in the Report Details are repeating for the number of times of data found. Is there a way I can get my report right ???
Hope some one can help me with this. I am required to create in 1 report showing 3 sections of information
----------- report details -----------------------
Total Number of Applications : [###] ---- section
Type of Business Number of Application
-----------------------------------------
[Business 1] [###] ---- section
[Business 2] [###
[etc.. ] [###
Receipt Method Numbe
-------------------------
[Method 1] [###] ----- section
[Method 2] [###
[etc... ] [###
------------- end of report details ---------------
Here is my Report >> Record Souce query and its results
SELECT * FROM [SELECT count(*), 'Total_Number', 1 FROM Busines
UNION SELECT count(*), BusinessType, 2 FROM Business GROUP BY BusinessTyp
UNION SELECT count(*), [Receipt Method], 3 FROM Business GROUP BY [Receipt Method]
]. AS [%$##@_Alias] ORDER BY 3, 2
Expr1000 Expr1001 Expr100
------------------------------------------------
10 Total_Number 1 {section 1 data
2 Exhibits 2 {section 2 data}
8 Community 2 { "
9 Mail 3 {section 3 data
1 Email 3 { "
I have all 3 sections defined in the Reports Details of the report. Question is how do I bind the control source of each [ ] textboxes so that it displays its associated section data only. What is happening is that Sections(1,2,3) in the Report Details are repeating for the number of times of data found. Is there a way I can get my report right ???