Connecting Tech Pros Worldwide Forums | Help | Site Map

Report Enggwise

JVG JVG is offline
Newbie
 
Join Date: Dec 2007
Posts: 8
#1: Dec 27 '07
Hello,
now i want to disp report Enggwise.

Platform Ms-Access
Field name - Engg_nm
Table -register
Report Name -Enggwise


I want to create report which is display information of Engg wise. Ex. If I Choose Engg name - JVG then display How many complaint he is complaited in this monh. disply complaint_no, Date, Client_nm, Problem,Remark, Complate_dt in Report.

Thanks.

nico5038's Avatar
Moderator
 
Join Date: Nov 2006
Location: The Netherlands
Posts: 2,232
#2: Dec 30 '07

re: Report Enggwise


Just create first a report to show all complaints per "Name"
When activating the report you can add a stCriteria to filter for the specific name.

Nic;o)
JVG JVG is offline
Newbie
 
Join Date: Dec 2007
Posts: 8
#3: Dec 31 '07

re: Report Enggwise


thanks but i dont understood. can u tell me deep.
nico5038's Avatar
Moderator
 
Join Date: Nov 2006
Location: The Netherlands
Posts: 2,232
#4: Dec 31 '07

re: Report Enggwise


about:
"How many complaint he is complaited in this monh. disply complaint_no, Date, Client_nm, Problem,Remark, Complate_dt in Report"

Would require a report with the fields from the table like:
complaint_no, Date, Client_nm, Problem,Remark, Complate_dt
When placing a button on a form you can add the specific Client_nm to filter the report with.

To count per Client use a groupby query like:
Expand|Select|Wrap|Line Numbers
  1. select Client_nm Count(*) As CountOfComplaints from tblYours Group by Client_nm;
  2.  
And define the report based on this query.

Nic;o)
Reply


Similar Microsoft Access / VBA bytes