473,387 Members | 1,621 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Dynamic reports

Hi,

Hoping someone can help. I have a booking database which has rooms and
dates. When a booking is made, it puts an 'X' in the box(Thanks Bob).All
well and good. The problem is caused by the need to add new rooms. The
queries,etc all work as they should. With respect to the report I have the
option of having dates across the top and rooms down the side or vice
versa.If I set up a report in the standard way, then either it won't show
the new rooms unless they are manually added to the report or I get an error
in the date as soon as it gets to the next day and 'drops' off the date from
the query. Any help/guidance would be greatly appreciated. I know nothing
about VBA so SQL advice would be greatly appreciated, if necessary.

--
SharkSYA
Nov 12 '05 #1
4 3026
As you have given no details about the data being reported, we aren't going
to be able to give you any useful advice. It is not at all clear how your
report is arranged that you'd have to add rooms to the report. I can't
imagine designing this kind of application in a fashion that it would be the
case. But a report is not independent of the data on which it is based.

Please clarify, with details on your data and on the design of the report.

Larry Linson
Microsoft Access MVP

"SharkSYA" <sh****@tw.uk> wrote in message news:40******@clear.net.nz...
Hi,

Hoping someone can help. I have a booking database which has rooms and
dates. When a booking is made, it puts an 'X' in the box(Thanks Bob).All
well and good. The problem is caused by the need to add new rooms. The
queries,etc all work as they should. With respect to the report I have the
option of having dates across the top and rooms down the side or vice
versa.If I set up a report in the standard way, then either it won't show
the new rooms unless they are manually added to the report or I get an error in the date as soon as it gets to the next day and 'drops' off the date from the query. Any help/guidance would be greatly appreciated. I know nothing
about VBA so SQL advice would be greatly appreciated, if necessary.

--
SharkSYA

Nov 12 '05 #2
Sorry about that. The report has rooms across the top and the dates are down
the left hand side. If a room is booked an 'X' appears in the appropriate
box. My problem is that when rooms are added they appear in the query but
not in the report based in that query. I hope that this is clearer. It isn't
imperative that the dates be down the left, they could be across the top and
the rooms down the side.

--
SharkSYA
"Larry Linson" <bo*****@localhost.not> wrote in message
news:Ha*****************@nwrddc02.gnilink.net...
As you have given no details about the data being reported, we aren't going to be able to give you any useful advice. It is not at all clear how your
report is arranged that you'd have to add rooms to the report. I can't
imagine designing this kind of application in a fashion that it would be the case. But a report is not independent of the data on which it is based.

Please clarify, with details on your data and on the design of the report.

Larry Linson
Microsoft Access MVP

"SharkSYA" <sh****@tw.uk> wrote in message news:40******@clear.net.nz...
Hi,

Hoping someone can help. I have a booking database which has rooms and
dates. When a booking is made, it puts an 'X' in the box(Thanks Bob).All
well and good. The problem is caused by the need to add new rooms. The
queries,etc all work as they should. With respect to the report I have the option of having dates across the top and rooms down the side or vice
versa.If I set up a report in the standard way, then either it won't show the new rooms unless they are manually added to the report or I get an

error
in the date as soon as it gets to the next day and 'drops' off the date

from
the query. Any help/guidance would be greatly appreciated. I know nothing about VBA so SQL advice would be greatly appreciated, if necessary.

--
SharkSYA


Nov 12 '05 #3
Consider the sample calendar reports at
http://www.invisibleinc.com/divFiles.cfm?divDivID=4. There is a
week-at-a-glance style report that uses data for some of the settings and
could use even more data if you need.

--
Duane Hookom
MS Access MVP
"SharkSYA" <sh****@tw.uk> wrote in message news:40******@clear.net.nz...
Sorry about that. The report has rooms across the top and the dates are down the left hand side. If a room is booked an 'X' appears in the appropriate
box. My problem is that when rooms are added they appear in the query but
not in the report based in that query. I hope that this is clearer. It isn't imperative that the dates be down the left, they could be across the top and the rooms down the side.

--
SharkSYA
"Larry Linson" <bo*****@localhost.not> wrote in message
news:Ha*****************@nwrddc02.gnilink.net...
As you have given no details about the data being reported, we aren't

going
to be able to give you any useful advice. It is not at all clear how your
report is arranged that you'd have to add rooms to the report. I can't
imagine designing this kind of application in a fashion that it would be

the
case. But a report is not independent of the data on which it is based.

Please clarify, with details on your data and on the design of the report.
Larry Linson
Microsoft Access MVP

"SharkSYA" <sh****@tw.uk> wrote in message news:40******@clear.net.nz...
Hi,

Hoping someone can help. I have a booking database which has rooms and
dates. When a booking is made, it puts an 'X' in the box(Thanks Bob).All well and good. The problem is caused by the need to add new rooms. The
queries,etc all work as they should. With respect to the report I have the option of having dates across the top and rooms down the side or vice
versa.If I set up a report in the standard way, then either it won't show the new rooms unless they are manually added to the report or I get an

error
in the date as soon as it gets to the next day and 'drops' off the
date from
the query. Any help/guidance would be greatly appreciated. I know

nothing about VBA so SQL advice would be greatly appreciated, if necessary.

--
SharkSYA



Nov 12 '05 #4
Without really seeing what you're trying to do, I envision your attempting
to re-create a spreadsheet type of report (rooms as rows, dates as columns).
If that is true, I have attempted to do this once before, and just got fed
up with it. So I decided to re-plan how the data was being grouped. Perhaps
the simplest thing to do, is just re-think how the information gets listed.
Perhaps group by date, and list rooms under that, or group by rooms, and
list all booked dates under it. Just a thought.

Mike Storr
www.veraccess.com

"SharkSYA" <sh****@tw.uk> wrote in message news:40******@clear.net.nz...
Hi,

Hoping someone can help. I have a booking database which has rooms and
dates. When a booking is made, it puts an 'X' in the box(Thanks Bob).All
well and good. The problem is caused by the need to add new rooms. The
queries,etc all work as they should. With respect to the report I have the
option of having dates across the top and rooms down the side or vice
versa.If I set up a report in the standard way, then either it won't show
the new rooms unless they are manually added to the report or I get an error in the date as soon as it gets to the next day and 'drops' off the date from the query. Any help/guidance would be greatly appreciated. I know nothing
about VBA so SQL advice would be greatly appreciated, if necessary.

--
SharkSYA

Nov 12 '05 #5

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

Similar topics

0
by: Tim | last post by:
Hello, Since this is a newsgroup about php & web related topics, I wanted to share a new Search Engine Optimization tool that we just released. I know many of you have non optimized dynamic...
2
by: Sam | last post by:
Hello everyone, I have a table, which contains a picture column, I put URL info into it. "www.myweb.com/1.jpg..." I want to show this picture in my crystal report, I find some samples show the...
1
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to...
1
by: Richard Hollenbeck | last post by:
Hello Newsgroup. You have all been very helpful in the past and I thank you. I try to ask relevant questions so that they don't just benefit me, but also benefit the group. I'm currently...
3
by: CAD Fiend | last post by:
Hello, Well, after an initial review of my database by my client, they have completely changed their minds about how they want their form. As a result, I'm having to re-think the whole process....
5
by: Ron | last post by:
I have a bunch of Crystal Reports (v9) published as WebServices and use a ReportViewer to display the reports on the ASPNET page. Everytime we move the reports from dev to production we have to...
4
by: deejayquai | last post by:
I've worked through the MS KB example and it doesn't really help me as I missing the basics of what the code is doing. I've posted a couple of times here in thsi group but with no success. Could...
0
by: PughDR | last post by:
As the subject of this topic suggestions I am trying to find a way to use ASP, SQL Server, Com+ and Crystal Reports 8.5 to Create Dynamic PDF Reports Over The Web, but the only article I found that...
2
by: fjm | last post by:
Hi all, I have to give users a way to create dynamic reports. Can sombody give me some ideas please? My first thoughts were to create static reports and I'm thinkin' that is not as good as it...
3
by: creative1 | last post by:
Here is how you create a complex data report that involves parent and child commands and you can update information at runtime. Its pretty straight forward to work with simple queries; however,...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...

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.