Link to home
Start Free TrialLog in
Avatar of lorincha
lorinchaFlag for United States of America

asked on

MS Access Report design - subreport, onopen run vba code, set recordsource

Hello .... I am in need of some assistance / guidance with a report.   Please see description of what has been done so far and a proposal for the next steps.  

Report Displays measurements, (ie. credit sales, end receivables, beg recv, end curr recv ... and 4 performance measurements) for A select time range.

Report sample below (Recordsource is a query, and report is dyamically filtered based on selection from form)

REPORT BY CUSTOMER

Business Unit: XXXXXX
CustomerID: XXXXXX

Column Names: fiscal month, CreditSales, EndRecv, BegRecv, EndCurrRecv, DSO, BPDSO, ADD, CEI
Rows:

                        5/27                   XXX           xXX        XXX        XXX            XXX   XXX    XXX   xxx
                        7/1                     XXX          XXX        XXX         XXX            XXX  XXX    XXX   XXX
                        7/29                   XXX           xxx         XXX
                        8/26                   xxx            xxx         XXX
                        9/30                   xxx            xxx         XXX


The part of the report above works fine ... now I need to display additional data.  The only way I can think of to do this is to create a  subreport and create code on the open event to execute it .... (please see what I am proposing to do ...NEED SOME GUIDANCE HERE):


vba code will do the following:
- Run a query to retrieve total credit sales for the BUSINESS UNIT
- Run another query to retrieve EndRecv and logic in vb code to calculate EndCurrRecv
- Run another query to retrieve BegRecv.

The above vba code will use values from 3 recordsets created from the queries just mentioned...

How can I set the recordsource of this subreport with the data retrieved using the vba?     Is it possible to take these values retrieved from several queries and populate the subreport text boxes that will be contained in the subreport?    Does this approach look feasible?

Thanks for any insight or guidance you can provide.... I am happy to provide additional clarification and details as needed.     Thanks.
Avatar of mpmccarthy
mpmccarthy

- Run a query to retrieve total credit sales for the BUSINESS UNIT
Put a footer on the group holding the business unit.  Put a textbox in the footer and set control source to
=Sum([CreditSales])

- Run another query to retrieve EndRecv and logic in vb code to calculate EndCurrRecv
what is the calculation as this can be entered into the control source for [EndCurrRecv]

- Run another query to retrieve BegRecv.
To do what with it?
Avatar of lorincha

ASKER

HI Mpmccarthy,


response to your questions:
- This is an individual report run on a customer (1 of 1000's)  Unfortunately, I can't retrieve the total sum of credit sales for the business unit this way.   I need to run a separate query to retrieve this amount.    I recently wrote some code to (a function that runs the query ... the function is called from a text box and it returns the result  for display.

- End CurrRecv is calculated by subtracting end receivables with a balance from the total receivables (TOTAL - FUTURE)

- Beg Recv is used as part of one of the formulas (CEI - collection effectiveness index).

Instead of creating multiple functions that are called form the report to display the appropriate values - ( ie. one to retrieve Credit sales, another for End ReceivablesEndCurr Receivables - Note: due to the nature of what is being retrieve, multiple queries need to be executed ... the data cannot be retrieve in one query),

Is there a way to get all the data we need in one function and assign it as the recordsource of the subreport?  
I'm just looking for the best and most efficient way to do this.....

Let me know if I can clarify anything or any other questions u have...

Thanks
Can someone please close question and refund the points.    I no longer need assistance on this one.    To address this, I call a function that I created residing in a module within access.   Within that function, several queries are called & recordsets are opened.   I populate controls (text boxes) by getting the retrieving the data needed in the vba code and then assigning the values retrieved to the controls.   I was able to reference the controls through the code and assign the values needed to them...thanks
ASKER CERTIFIED SOLUTION
Avatar of PashaMod
PashaMod

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial