G
GoBrowns!
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?!?
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?!?