A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Setting Up & Running Reports
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How to make a report static, when just viewing it.



 
 
Thread Tools Display Modes
  #1  
Old July 15th, 2009, 04:18 PM posted to microsoft.public.access.reports
CJM3407
external usenet poster
 
Posts: 10
Default How to make a report static, when just viewing it.

There are so many calculations going on on my report that it lags because
when I scroll through or do anything it auto refreshes. The calculations are
based on stagnant data there is no reason that it needs to constantly refresh
unless they choose to hit refresh. Is there a way to disable the auto
refresh thing. It causes my access to crash on simple things.
  #2  
Old July 15th, 2009, 04:22 PM posted to microsoft.public.access.reports
CJM3407
external usenet poster
 
Posts: 10
Default How to make a report static, when just viewing it.

Not sure how to edit on this form. Anyway, umm i might add, I now know the
data is fine if it gets calculated as it loads. Because when I go to Print
Preview, it puts all the right data in the right spots. That recalculation
every second is just destroying perfermance.

"CJM3407" wrote:

There are so many calculations going on on my report that it lags because
when I scroll through or do anything it auto refreshes. The calculations are
based on stagnant data there is no reason that it needs to constantly refresh
unless they choose to hit refresh. Is there a way to disable the auto
refresh thing. It causes my access to crash on simple things.

  #3  
Old July 15th, 2009, 10:16 PM posted to microsoft.public.access.reports
Duane Hookom
external usenet poster
 
Posts: 7,177
Default How to make a report static, when just viewing it.

Can you tell us anything about the calculations? Typically this isn't an
issue. When the calculations become so complicated that they affect the
rendering of the report, you might want to consider some alternatives such as
redoing your queries or creating temporary tables.

--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Not sure how to edit on this form. Anyway, umm i might add, I now know the
data is fine if it gets calculated as it loads. Because when I go to Print
Preview, it puts all the right data in the right spots. That recalculation
every second is just destroying perfermance.

"CJM3407" wrote:

There are so many calculations going on on my report that it lags because
when I scroll through or do anything it auto refreshes. The calculations are
based on stagnant data there is no reason that it needs to constantly refresh
unless they choose to hit refresh. Is there a way to disable the auto
refresh thing. It causes my access to crash on simple things.

  #4  
Old July 16th, 2009, 01:50 PM posted to microsoft.public.access.reports
CJM3407
external usenet poster
 
Posts: 10
Default How to make a report static, when just viewing it.

Ok, it starts out with a query that grabs all the Account Activity entries
that match the two Id numbers(from the form). Then another takes that query,
and draws out the data that lies in between a 30 day span. This one also
left outer joins with a date table (has all of the dates for the next 50
years). This makes all days be shown(and the join, joins the activity
information into the correct dates). The report calls on the second qry.

On the report, I group the data by Date. In the detail section I calculate
the deposits-withdrawals. That is then added to the LastTermBalance(which is
calculated on the form before hand.

Then in the DateOf Footer(group by object), the interest calculation is
done. And another textbox is keeping a running total of the interest.

It errors when I try to reference the running total of the interest inside
the report footer.

"Duane Hookom" wrote:

Can you tell us anything about the calculations? Typically this isn't an
issue. When the calculations become so complicated that they affect the
rendering of the report, you might want to consider some alternatives such as
redoing your queries or creating temporary tables.

--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Not sure how to edit on this form. Anyway, umm i might add, I now know the
data is fine if it gets calculated as it loads. Because when I go to Print
Preview, it puts all the right data in the right spots. That recalculation
every second is just destroying perfermance.

"CJM3407" wrote:

There are so many calculations going on on my report that it lags because
when I scroll through or do anything it auto refreshes. The calculations are
based on stagnant data there is no reason that it needs to constantly refresh
unless they choose to hit refresh. Is there a way to disable the auto
refresh thing. It causes my access to crash on simple things.

  #5  
Old July 17th, 2009, 08:00 AM posted to microsoft.public.access.reports
Duane Hookom
external usenet poster
 
Posts: 7,177
Default How to make a report static, when just viewing it.

Nothing you suggested should cause issues. I assume you didn't use DLookup()
or DSum() or similar in the report. Also, are all the date fields indexed?
Are teh ID numbers indexed?
--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Ok, it starts out with a query that grabs all the Account Activity entries
that match the two Id numbers(from the form). Then another takes that query,
and draws out the data that lies in between a 30 day span. This one also
left outer joins with a date table (has all of the dates for the next 50
years). This makes all days be shown(and the join, joins the activity
information into the correct dates). The report calls on the second qry.

On the report, I group the data by Date. In the detail section I calculate
the deposits-withdrawals. That is then added to the LastTermBalance(which is
calculated on the form before hand.

Then in the DateOf Footer(group by object), the interest calculation is
done. And another textbox is keeping a running total of the interest.

It errors when I try to reference the running total of the interest inside
the report footer.

"Duane Hookom" wrote:

Can you tell us anything about the calculations? Typically this isn't an
issue. When the calculations become so complicated that they affect the
rendering of the report, you might want to consider some alternatives such as
redoing your queries or creating temporary tables.

--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Not sure how to edit on this form. Anyway, umm i might add, I now know the
data is fine if it gets calculated as it loads. Because when I go to Print
Preview, it puts all the right data in the right spots. That recalculation
every second is just destroying perfermance.

"CJM3407" wrote:

There are so many calculations going on on my report that it lags because
when I scroll through or do anything it auto refreshes. The calculations are
based on stagnant data there is no reason that it needs to constantly refresh
unless they choose to hit refresh. Is there a way to disable the auto
refresh thing. It causes my access to crash on simple things.

  #6  
Old July 20th, 2009, 07:03 PM posted to microsoft.public.access.reports
CJM3407
external usenet poster
 
Posts: 10
Default How to make a report static, when just viewing it.

I do use DLookup() on the form that the report gets some of its information
from. And I do a DLookUp() to find the name of the Company (for the header)

"Duane Hookom" wrote:

Nothing you suggested should cause issues. I assume you didn't use DLookup()
or DSum() or similar in the report. Also, are all the date fields indexed?
Are teh ID numbers indexed?
--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Ok, it starts out with a query that grabs all the Account Activity entries
that match the two Id numbers(from the form). Then another takes that query,
and draws out the data that lies in between a 30 day span. This one also
left outer joins with a date table (has all of the dates for the next 50
years). This makes all days be shown(and the join, joins the activity
information into the correct dates). The report calls on the second qry.

On the report, I group the data by Date. In the detail section I calculate
the deposits-withdrawals. That is then added to the LastTermBalance(which is
calculated on the form before hand.

Then in the DateOf Footer(group by object), the interest calculation is
done. And another textbox is keeping a running total of the interest.

It errors when I try to reference the running total of the interest inside
the report footer.

"Duane Hookom" wrote:

Can you tell us anything about the calculations? Typically this isn't an
issue. When the calculations become so complicated that they affect the
rendering of the report, you might want to consider some alternatives such as
redoing your queries or creating temporary tables.

--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Not sure how to edit on this form. Anyway, umm i might add, I now know the
data is fine if it gets calculated as it loads. Because when I go to Print
Preview, it puts all the right data in the right spots. That recalculation
every second is just destroying perfermance.

"CJM3407" wrote:

There are so many calculations going on on my report that it lags because
when I scroll through or do anything it auto refreshes. The calculations are
based on stagnant data there is no reason that it needs to constantly refresh
unless they choose to hit refresh. Is there a way to disable the auto
refresh thing. It causes my access to crash on simple things.

  #7  
Old July 21st, 2009, 03:23 AM posted to microsoft.public.access.reports
Duane Hookom
external usenet poster
 
Posts: 7,177
Default How to make a report static, when just viewing it.

I would make sure the company was in the report's record source. Are the
DLookup()s rendered only once or multiple times?
--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

I do use DLookup() on the form that the report gets some of its information
from. And I do a DLookUp() to find the name of the Company (for the header)

"Duane Hookom" wrote:

Nothing you suggested should cause issues. I assume you didn't use DLookup()
or DSum() or similar in the report. Also, are all the date fields indexed?
Are teh ID numbers indexed?
--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Ok, it starts out with a query that grabs all the Account Activity entries
that match the two Id numbers(from the form). Then another takes that query,
and draws out the data that lies in between a 30 day span. This one also
left outer joins with a date table (has all of the dates for the next 50
years). This makes all days be shown(and the join, joins the activity
information into the correct dates). The report calls on the second qry.

On the report, I group the data by Date. In the detail section I calculate
the deposits-withdrawals. That is then added to the LastTermBalance(which is
calculated on the form before hand.

Then in the DateOf Footer(group by object), the interest calculation is
done. And another textbox is keeping a running total of the interest.

It errors when I try to reference the running total of the interest inside
the report footer.

"Duane Hookom" wrote:

Can you tell us anything about the calculations? Typically this isn't an
issue. When the calculations become so complicated that they affect the
rendering of the report, you might want to consider some alternatives such as
redoing your queries or creating temporary tables.

--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Not sure how to edit on this form. Anyway, umm i might add, I now know the
data is fine if it gets calculated as it loads. Because when I go to Print
Preview, it puts all the right data in the right spots. That recalculation
every second is just destroying perfermance.

"CJM3407" wrote:

There are so many calculations going on on my report that it lags because
when I scroll through or do anything it auto refreshes. The calculations are
based on stagnant data there is no reason that it needs to constantly refresh
unless they choose to hit refresh. Is there a way to disable the auto
refresh thing. It causes my access to crash on simple things.

  #8  
Old August 5th, 2009, 01:11 PM posted to microsoft.public.access.reports
Mark Liguori
external usenet poster
 
Posts: 1
Default How to make a report static, when just viewing it.

I want to delete all emails of this type. How do I do so? After I attempt
to delete, they regenerate themselves.


On 7/16/09 8:50 AM, in article
, "CJM3407"
wrote:

Ok, it starts out with a query that grabs all the Account Activity entries
that match the two Id numbers(from the form). Then another takes that query,
and draws out the data that lies in between a 30 day span. This one also
left outer joins with a date table (has all of the dates for the next 50
years). This makes all days be shown(and the join, joins the activity
information into the correct dates). The report calls on the second qry.

On the report, I group the data by Date. In the detail section I calculate
the deposits-withdrawals. That is then added to the LastTermBalance(which is
calculated on the form before hand.

Then in the DateOf Footer(group by object), the interest calculation is
done. And another textbox is keeping a running total of the interest.

It errors when I try to reference the running total of the interest inside
the report footer.

"Duane Hookom" wrote:

Can you tell us anything about the calculations? Typically this isn't an
issue. When the calculations become so complicated that they affect the
rendering of the report, you might want to consider some alternatives such as
redoing your queries or creating temporary tables.

--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Not sure how to edit on this form. Anyway, umm i might add, I now know the
data is fine if it gets calculated as it loads. Because when I go to Print
Preview, it puts all the right data in the right spots. That recalculation
every second is just destroying perfermance.

"CJM3407" wrote:

There are so many calculations going on on my report that it lags because
when I scroll through or do anything it auto refreshes. The calculations
are
based on stagnant data there is no reason that it needs to constantly
refresh
unless they choose to hit refresh. Is there a way to disable the auto
refresh thing. It causes my access to crash on simple things.


  #9  
Old August 5th, 2009, 06:46 PM posted to microsoft.public.access.reports
Duane Hookom
external usenet poster
 
Posts: 7,177
Default How to make a report static, when just viewing it.

Huh? This is a public news group, not an email. You can't delete
records/posts from a public news group.

--
Duane Hookom
Microsoft Access MVP


"Mark Liguori" wrote:

I want to delete all emails of this type. How do I do so? After I attempt
to delete, they regenerate themselves.


On 7/16/09 8:50 AM, in article
, "CJM3407"
wrote:

Ok, it starts out with a query that grabs all the Account Activity entries
that match the two Id numbers(from the form). Then another takes that query,
and draws out the data that lies in between a 30 day span. This one also
left outer joins with a date table (has all of the dates for the next 50
years). This makes all days be shown(and the join, joins the activity
information into the correct dates). The report calls on the second qry.

On the report, I group the data by Date. In the detail section I calculate
the deposits-withdrawals. That is then added to the LastTermBalance(which is
calculated on the form before hand.

Then in the DateOf Footer(group by object), the interest calculation is
done. And another textbox is keeping a running total of the interest.

It errors when I try to reference the running total of the interest inside
the report footer.

"Duane Hookom" wrote:

Can you tell us anything about the calculations? Typically this isn't an
issue. When the calculations become so complicated that they affect the
rendering of the report, you might want to consider some alternatives such as
redoing your queries or creating temporary tables.

--
Duane Hookom
Microsoft Access MVP


"CJM3407" wrote:

Not sure how to edit on this form. Anyway, umm i might add, I now know the
data is fine if it gets calculated as it loads. Because when I go to Print
Preview, it puts all the right data in the right spots. That recalculation
every second is just destroying perfermance.

"CJM3407" wrote:

There are so many calculations going on on my report that it lags because
when I scroll through or do anything it auto refreshes. The calculations
are
based on stagnant data there is no reason that it needs to constantly
refresh
unless they choose to hit refresh. Is there a way to disable the auto
refresh thing. It causes my access to crash on simple things.



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 09:50 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.