Is there a way that I can create a universal report header?
I want to create a single header that is automatically used be all reports. If I change the design of the header, it will be used in all the reports in my database.
How can I change sub reports on the fly? I have 2 companies, A & B. If I select Company A, I want Company A's subreport and same similarly for Company B
When browsing the report in design view, you can reach the properties of both the subreport control and the subreport itself. Find the subreport control, where you in the "other" tab, will find the subreport control name (lets, for the sample say its "MySubRptName". Now, in the reports on open event try something like this
[tt]if <your condition> then
me.controls("MySubRptName").sourceobject = "rpt1"
else
me.controls("MySubRptName").sourceobject = "rpt2"
end if[/tt]
My problem is when running an annual report the columns always start with Jan. I would like to start on a specific month and run to another specified month.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.