Displaying stats on main menu form

L

Lloyd

I have a Main Menu form that opens when the user opens the database. It has
7 Dlookup fields (Here is one example:" =("Murders YTD: " &
DCount("[personcasetype]","qryytdmurdervictims")") that I use to show the
enduser current stats based on records in the tables. The database is split
with the backend on a server and the front end on the users local PC. The
problem is there is a delay on the Main Menu form while it does the DLookup
calculations. I want to still display the stats for the user but I need to
speed up the calculations. Is there a way to have these done on the server
instead or any other way to speed them up.?
 
N

Noëlla Gabriël

Hi,

have you tried to make a totals query to get the results, and use this query
as a data source for your form?
 
L

Lloyd

there are a number of calculations needed to bring back the final number.
Wouldnt a query on the front end do the same thing as a Dcount and have to
query the whole table to do the calculation?

Noëlla Gabriël said:
Hi,

have you tried to make a totals query to get the results, and use this query
as a data source for your form?


--
Kind regards
Noëlla


Lloyd said:
I have a Main Menu form that opens when the user opens the database. It has
7 Dlookup fields (Here is one example:" =("Murders YTD: " &
DCount("[personcasetype]","qryytdmurdervictims")") that I use to show the
enduser current stats based on records in the tables. The database is split
with the backend on a server and the front end on the users local PC. The
problem is there is a delay on the Main Menu form while it does the DLookup
calculations. I want to still display the stats for the user but I need to
speed up the calculations. Is there a way to have these done on the server
instead or any other way to speed them up.?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top