473,666 Members | 2,181 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Multiple Instances Of A Report: Fighting Nature?

I have a situation where a bunch of statistics are being presented based on a
mutual fund and a benchmark fund's monthly and quarterly returns for a given
period (like 10 years....)

The hitch is that all bets are off if all four return streams are not complete
and contiguous. In that case, however, the user needs to know which fund(s)
have returns missing for which dates so they can backfill them.

I started out with a single report and a single work table - trying to open 4
instances of the report on-the-fly.

But MS Access crashed so often and response time was so slow and I didn't want
to be eating up the client's budget on a futile quest.... So I wimped out -
cloned the original report 3 times and created four separate work tables.

Runs in a flash, and nobody'll ever know.... But did I do the right thing?
Are there problems lurking behind multiple instances of the same report or were
me and my PC just having a bad day?
I've played around with multiple instances of a form with no apparent
problems... But reports just weren't happening...
--
PeteCresswell
Nov 13 '05 #1
2 2090
Pete,
I'd relax. It sounds like you found something that worked given the time
and budget available. With more time & money I'd lean toward attempting
four different views for each report instance and perhaps a SELECT . . .
UNION statment to stack the results from the four into one set of rows. If
there needs to be a value in each of sixteen columns (12 for each month plus
four for the quarterly returns) then I'd use something like
NZ(MONTH_VALUE, "Nothing") to fill the months for one of the four with
something so I knew where I had missing data.

This sounds like a two step process, though. Step 1 is a view which helps
identify missing data and Step 2 is another view that presents the validated
result. If I am correct in assuming that this contributes to some sort of
numerical analysis then the Step 2 view would have to use NZ(MONTH_VALUE, 0)
instead of NZ(MONTH_VALUE, "Nothing") so as to not screw up the math on these
columns.
Time to put down the beer and go get my friend at the aiport. Post a reply
here if I can be of more help. (Maybe after I recover from my present
altered state of mind).
--
Alan Webb
kn*******@SPAMh otmail.com
"It's not IT, it's IS"

"(Pete Cresswell)" <x@y.z.invali d> wrote in message
news:mb******** *************** *********@4ax.c om...
I have a situation where a bunch of statistics are being presented based on
a
mutual fund and a benchmark fund's monthly and quarterly returns for a
given
period (like 10 years....)

The hitch is that all bets are off if all four return streams are not
complete
and contiguous. In that case, however, the user needs to know which
fund(s)
have returns missing for which dates so they can backfill them.

I started out with a single report and a single work table - trying to
open 4
instances of the report on-the-fly.

But MS Access crashed so often and response time was so slow and I didn't
want
to be eating up the client's budget on a futile quest.... So I wimped
out -
cloned the original report 3 times and created four separate work tables.

Runs in a flash, and nobody'll ever know.... But did I do the right
thing?
Are there problems lurking behind multiple instances of the same report or
were
me and my PC just having a bad day?
I've played around with multiple instances of a form with no apparent
problems... But reports just weren't happening...
--
PeteCresswell

Nov 13 '05 #2
Per Alan Webb:
perhaps a SELECT . . .
UNION statment to stack the results from the four into one set of row


Bingo!..... Dunno why I don't think of these things right off the bat...

I'll stick with the four work tables and union them into a single report broken
on a variable whose value is unique to each component of the union.
--
PeteCresswell
Nov 13 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
1998
by: Steve Jorgensen | last post by:
Hi all, This is actually not an issue of mine, but one a friend of mine told me about that I was able to confirm. Let's say you want a highly customizable report, so you want to be able to do things like specify the ControlSource properties of TextBox controls on the report when it is run. The only time this works is in the Open event handler, but that works great. So, no problem, right?
7
6237
by: Dave | last post by:
Apologies for the newbie question. I have created a vb.net program for my company that is designed to work with Word Templates (about forty of them that we commonly use) that are selected by the user and populated (with info from an Access database) at run-time, then saved as Word documents. The program I have coded works fine -- it does what I need it to do. But it has two problems: (1) it runs very slowly, and (2) it does not seem to...
4
3282
by: GGerard | last post by:
Hello I have a program where the user can open as many instances of a form as the user wants. The only limit to how many instances can be opened is determined by the limit of the computer itself (the amount of RAM - I think). When enough instances of this form are opened and the limit of the computer is reached
3
7693
by: sara | last post by:
I've been reading all the posts on this topic. Most are years old, so I have 2 questions: 1. Is there any improvement on opening the same report multiple times (with different input parameters on each) with Access 2000? 2. In the post listed below (from March 1998) M G Foster posed a solution that makes sense to me and looks like something I could learn. HOWEVER, the code snippet refers to getting the input parameters from a list...
6
2644
by: Bob Alston | last post by:
Looking for someone with experience building apps with multiple instances of forms open. I am building an app for a nonprofit organizations case workers. They provide services to the elderly. so far I have built a traditional app, switchboard, forms, etc. Part of this app is to automate the forms they previously prepared manually. After the app was built and works just fine, I find out there are several case managers using MS word...
6
9414
by: Dave | last post by:
On my form I have combo boxes. These combo boxes, after updating them, populate respective listboxes that are located below the combo boxes on the same form. I am trying to use a "generate report" button located on my form to print all of the list box values (that have been updated via selection from combo boxes) from the form to the report. I've tried using a macro with the code: Macro Name: cmdGenerateReport : On Click Action:...
7
4003
by: Ceebaby via AccessMonster.com | last post by:
Hi All Here's hoping someone can help me with this. I have a report based on a query where the criteria for 4 of the fields is set from an unbound form. I want the user to be able to select any combination of the combo boxes, some might not be selected etc etc. ie they may want to select the area and ward to show on the report but not the case officer or the property type
2
1653
LegalIT
by: LegalIT | last post by:
Hello, I have a VB.net application that creates reports from database information. I am able to create the reports fine. The problem is each time I create a report my application starts a new instance of Word instead of just adding a document to the current application. I use the following code to create each report. If I take the New out I get an error. Dim objWord As New Word.Application objWord.Visible = True ...
3
3023
Atli
by: Atli | last post by:
Hi everybody. This is not so much a problem, since I have already managed to find a solution, but my solution requires the use of the eval() function, which I just hate to use. The problem is this. I have an object that has a function. This function needs to call itself in a setTimeout call. Using the "this" keyword from within the callback function will obviously not work, seeing as it would reference the new function rather than the...
0
8454
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8878
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8785
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8560
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8644
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7389
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6200
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
2776
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2012
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.