473,378 Members | 1,577 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Count record in Report

How can i count the record in a report like as you see in the picture ..


i need your idea and your help ...
please help me

best regards
Farid Sukkar
Sep 10 '06 #1
5 3464
PEB
1,418 Expert 1GB
Hi Farid,

I suppose you need a query that returns the count of records grouped by your shippement and especially the first 3 letters in your shippement

So you need to introduce in Queries, Query View choose SQL view and type the following SQL:

SELECT DISTINCT MID([SizeOfShippement],1,3) AS Shippement, Count(MID([SizeOfShippement],1,3)) AS Count
FROM [YOUR TABLE]
ORDER BY MID([SizeOfShippement],1,3);

Please change [YOUR TABLE] with the name of your table source of the data

Have a nice day! :)
Sep 10 '06 #2
thank you for help me ...
when i do as you told me ... the message error appear to me



please visit the websit i upload to you my Database project ...
please download and try it ..

http://rapidshare.de/files/32592426/project_.rar.html

another website ..

http://www.sendspace.com/file/xacwsq

thank you very much for help me
Sep 10 '06 #3
PEB
1,418 Expert 1GB
Try the follow:

SELECT Mid([Size],1,3) AS Sizes, Count(SeaTable.Size) AS CountOfSize
FROM SeaTable
GROUP BY Mid([Size],1,3);

And it seems You know something for Bulgaria, don't you???
Sep 10 '06 #4
thank you ....
you are the best one ...

can i ask you >>
How just the query (FCL and LCL )

the code is successfully work ... but i ask you how just (FCL and LCL)

thank you in advance
farid Sukkar
Sep 10 '06 #5
i solve it ...

add on the code ...

HAVING (((Mid([Size],1,3)) Like "fcl*" Or (Mid([Size],1,3)) Like "LCL*"));

thank you ..
Farid
Sep 10 '06 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Darren | last post by:
I have a report with one level of grouping and a running sum field in the detail section of the report. When I make the running sum field visible, I can see that it increases the count by 1 for...
1
by: FZ | last post by:
Hi again all, I have another reporting question that I was hoping someone could help me with. I have a report that I have grouped into 3 groups: by year, by quarter, and by response type. I have...
1
by: Simon Matthews | last post by:
Hope someone can help an Access beginner! I've just started keeping my surgical logbook on access and it's a simple flat-file affair. I have created several queries that will list cases...
1
by: seeker52 | last post by:
I receive an error 3464 when I put =count(*) in the controlsource of a textbox on the report header. The error is thrown at the filter created for the report when I docmd openreport. The error is...
2
by: SJM | last post by:
I have a report that displays records of real estate properties. It is possible for each property to appear a number of times for various reasons. Each record however is unique. What I would like...
22
by: MP | last post by:
vb6,ado,mdb,win2k i pass the sql string to the .Execute method on the open connection to Table_Name(const) db table fwiw (the connection opened via class wrapper:) msConnString = "Data Source="...
5
by: Soccer5 | last post by:
Trying to Count records on a report that meet a certain criteria. Have a text box in the Report Footer that has the following in the Control Source: =Count(="S") This does not work. It...
7
by: CampbellJD1 | last post by:
I am using Access 2003 Professional. I have been working with Access for some time and I have created an MDB with a Linked Table and the Data there is temporarily transferred to other Table for...
1
by: nospam | last post by:
I have a report to count some statistics of case data. I can't figure out how to make Access group and sum/count information to give me a nice statistics report. Basically the database has case...
1
by: sparks | last post by:
I have always just got a count on records and put up a box at the top of the entry forms saying something like 1 of 500 and updating it as you got to 500 of 500. I have never thought of this as...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.