October 19, 200619 yr 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.
October 19, 200619 yr Author 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 :)
October 19, 200619 yr Define a calc: RecordCount (calculation, number result) = get(foundcount) In the Storage options, select "Do not store calculation results"
October 19, 200619 yr 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.
October 19, 200619 yr Author Ender, works perfect! Thank you! That has been a headache for me to figure out. Guess we all start off somehwere. Thanks again!
October 19, 200619 yr 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).
October 19, 200619 yr 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.
Create an account or sign in to comment