A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Setting Up & Running Reports
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Report is Blank!



 
 
Thread Tools Display Modes
  #1  
Old November 2nd, 2008, 06:39 PM posted to microsoft.public.access.reports
GoBrowns!
external usenet poster
 
Posts: 30
Default Report is Blank!

I need help with a report. Here is what the SQL looks like:

TRANSFORM Count(MRPC_Query.Reason_Code) AS CountOfReason_Code
SELECT MRPC_Query.MRPC
FROM MRPC_Query
GROUP BY MRPC_Query.MRPC
PIVOT MRPC_Query.Reason_Code;


The idea is to have the user input a beginning and end date into a form,
then click the button to run this report. I want it to show up as a bar graph
that shows the user for a given time period, how many of each reason code was
entered for items in each of the MRP Controllers. I have tried the report
multiple ways, but the report keeps coming up blank. What am I doing wrong?!?

I created the report in Wizard, but I thought seeing the SQL would help. Any
ideas on how to fix?!?
  #2  
Old November 2nd, 2008, 08:33 PM posted to microsoft.public.access.reports
Duane Hookom
external usenet poster
 
Posts: 7,177
Default Report is Blank!

I don't see where the user in inputting anything. You must enter the data
types of all parameters used in crosstab queries. Also, if you are using
parameter prompts, I think this is a fumble. Always use controls on forms for
all user interface.

Does your MRPC_Query return records? What is its SQL view?
--
Duane Hookom
Microsoft Access MVP


"GoBrowns!" wrote:

I need help with a report. Here is what the SQL looks like:

TRANSFORM Count(MRPC_Query.Reason_Code) AS CountOfReason_Code
SELECT MRPC_Query.MRPC
FROM MRPC_Query
GROUP BY MRPC_Query.MRPC
PIVOT MRPC_Query.Reason_Code;


The idea is to have the user input a beginning and end date into a form,
then click the button to run this report. I want it to show up as a bar graph
that shows the user for a given time period, how many of each reason code was
entered for items in each of the MRP Controllers. I have tried the report
multiple ways, but the report keeps coming up blank. What am I doing wrong?!?

I created the report in Wizard, but I thought seeing the SQL would help. Any
ideas on how to fix?!?

  #3  
Old November 3rd, 2008, 02:16 PM posted to microsoft.public.access.reports
GoBrowns!
external usenet poster
 
Posts: 30
Default Report is Blank!

There is a form that asks the user for a Beginning and End date. The user
inputs the dates, clicks on the command button, and the report is supposed to
open. It works on my other report, just not this one....

Here is the SQL for my Query "MRPC_Query":

SELECT DISTINCT Conformance_to_Schedule_Archive.Actual_Finish_Date ,
Conformance_to_Schedule_Archive.Work_Center,
Conformance_to_Schedule_Archive.Work_Center_Descri ption,
Conformance_to_Schedule_Archive.Material,
Conformance_to_Schedule_Archive.Material_Descripti on,
Conformance_to_Schedule_Archive.Schedule_Quantity,
Conformance_to_Schedule_Archive.Adjusted_Quantity,
Conformance_to_Schedule_Archive.Remaining_Quantity ,
Conformance_to_Schedule_Archive.Percentage_Complet e,
Conformance_to_Schedule_Archive.Reason_Code,
Conformance_to_Schedule_Archive.[Reason_Code Description], MRPC.MRPC
FROM Conformance_to_Schedule_Archive LEFT JOIN MRPC ON
Conformance_to_Schedule_Archive.Material = MRPC.IDH
WHERE (((Conformance_to_Schedule_Archive.Actual_Finish_D ate) Between
[Forms]![Reason_Code_Report_Form]![Beginning Date] And
[Forms]![Reason_Code_Report_Form]![Ending Date]));


I can get the query to return values, just not the report. Then I thought it
may be the type of report I am trying: I want a bar graph that graphs the
various reason codes for each MRPC based on the frequency of reason code, if
that makes sense.

Thanks for the help!!!!!!!!

"Duane Hookom" wrote:

I don't see where the user in inputting anything. You must enter the data
types of all parameters used in crosstab queries. Also, if you are using
parameter prompts, I think this is a fumble. Always use controls on forms for
all user interface.

Does your MRPC_Query return records? What is its SQL view?
--
Duane Hookom
Microsoft Access MVP


"GoBrowns!" wrote:

I need help with a report. Here is what the SQL looks like:

TRANSFORM Count(MRPC_Query.Reason_Code) AS CountOfReason_Code
SELECT MRPC_Query.MRPC
FROM MRPC_Query
GROUP BY MRPC_Query.MRPC
PIVOT MRPC_Query.Reason_Code;


The idea is to have the user input a beginning and end date into a form,
then click the button to run this report. I want it to show up as a bar graph
that shows the user for a given time period, how many of each reason code was
entered for items in each of the MRP Controllers. I have tried the report
multiple ways, but the report keeps coming up blank. What am I doing wrong?!?

I created the report in Wizard, but I thought seeing the SQL would help. Any
ideas on how to fix?!?

  #4  
Old November 3rd, 2008, 02:39 PM posted to microsoft.public.access.reports
Duane Hookom
external usenet poster
 
Posts: 7,177
Default Report is Blank!

As I stated previously "You must enter the data types of all parameters used
in crosstab queries". While in design view of either your select or crosstab
query menu: Query-Parameters and enter:
[Forms]![Reason_Code_Report_Form]![Beginning Date] Datetime
[Forms]![Reason_Code_Report_Form]![Ending Date] Datetime

See if that makes any difference.
--
Duane Hookom
Microsoft Access MVP


"GoBrowns!" wrote:

There is a form that asks the user for a Beginning and End date. The user
inputs the dates, clicks on the command button, and the report is supposed to
open. It works on my other report, just not this one....

Here is the SQL for my Query "MRPC_Query":

SELECT DISTINCT Conformance_to_Schedule_Archive.Actual_Finish_Date ,
Conformance_to_Schedule_Archive.Work_Center,
Conformance_to_Schedule_Archive.Work_Center_Descri ption,
Conformance_to_Schedule_Archive.Material,
Conformance_to_Schedule_Archive.Material_Descripti on,
Conformance_to_Schedule_Archive.Schedule_Quantity,
Conformance_to_Schedule_Archive.Adjusted_Quantity,
Conformance_to_Schedule_Archive.Remaining_Quantity ,
Conformance_to_Schedule_Archive.Percentage_Complet e,
Conformance_to_Schedule_Archive.Reason_Code,
Conformance_to_Schedule_Archive.[Reason_Code Description], MRPC.MRPC
FROM Conformance_to_Schedule_Archive LEFT JOIN MRPC ON
Conformance_to_Schedule_Archive.Material = MRPC.IDH
WHERE (((Conformance_to_Schedule_Archive.Actual_Finish_D ate) Between
[Forms]![Reason_Code_Report_Form]![Beginning Date] And
[Forms]![Reason_Code_Report_Form]![Ending Date]));


I can get the query to return values, just not the report. Then I thought it
may be the type of report I am trying: I want a bar graph that graphs the
various reason codes for each MRPC based on the frequency of reason code, if
that makes sense.

Thanks for the help!!!!!!!!

"Duane Hookom" wrote:

I don't see where the user in inputting anything. You must enter the data
types of all parameters used in crosstab queries. Also, if you are using
parameter prompts, I think this is a fumble. Always use controls on forms for
all user interface.

Does your MRPC_Query return records? What is its SQL view?
--
Duane Hookom
Microsoft Access MVP


"GoBrowns!" wrote:

I need help with a report. Here is what the SQL looks like:

TRANSFORM Count(MRPC_Query.Reason_Code) AS CountOfReason_Code
SELECT MRPC_Query.MRPC
FROM MRPC_Query
GROUP BY MRPC_Query.MRPC
PIVOT MRPC_Query.Reason_Code;


The idea is to have the user input a beginning and end date into a form,
then click the button to run this report. I want it to show up as a bar graph
that shows the user for a given time period, how many of each reason code was
entered for items in each of the MRP Controllers. I have tried the report
multiple ways, but the report keeps coming up blank. What am I doing wrong?!?

I created the report in Wizard, but I thought seeing the SQL would help. Any
ideas on how to fix?!?

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:50 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.