JCJXXL Posted October 19, 2006 Posted October 19, 2006 I know the total number of records is listed to the left in the tool palette. But is there a field I could use to show the total record count? Basically something that displays the total number of customers in the database? Thanks.
JCJXXL Posted October 19, 2006 Author Posted October 19, 2006 Hi Fei. I tried your suggestion and it displays the CURRENT record but not the TOTAL number of records. On my layout I have the following: Curent Customer Record (this displays the current record I am working on) Total Customer Count (This is what I need.. something to show the total number of records in the database). Thanks for your help :)
Ender Posted October 19, 2006 Posted October 19, 2006 Define a calc: RecordCount (calculation, number result) = get(foundcount) In the Storage options, select "Do not store calculation results"
Fei Posted October 19, 2006 Posted October 19, 2006 You can create a SUMMARY field and choose COUNT and point to any one of your field. In your case you can choose your customer name. It will calculate for u the total of customer.
JCJXXL Posted October 19, 2006 Author Posted October 19, 2006 Ender, works perfect! Thank you! That has been a headache for me to figure out. Guess we all start off somehwere. Thanks again!
Ender Posted October 19, 2006 Posted October 19, 2006 While a Summary Count is good to have in many tables for various Sub-Summary reports, it is not an efficient way to get the found count. In large record sets, it is much slower to calculate such summary fields than it is to use the function designed for this purpose, get(foundcount).
BobWeaver Posted October 19, 2006 Posted October 19, 2006 Also note the difference between Get(FoundCount) and Get(TotalRecordCount). The first gives the number of records in the found set, and the second gives the total number of records in the table.
Recommended Posts
This topic is 6672 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now