sql - Report Schedule -
I need to create a report in SSR2008 R2, which shows a "calendar" of training sessions.
Give me an example:
I have a session that has a start date and end date, and its start time and end time. I wanted to create a table in which the columns were on the day of the month, and the lines were in my case, at 8 a.m., 9 o'clock ...
Its purpose would be something like this:
< Img src = "https://i.stack.imgur.com/y2GHs.png" alt = "example">
I have a desk where I can get all the initial time and expiry time period With session with initial date
My concern came up again on the following aspects:
- Do you need a table with year, month, day?
- What about Ace Hour? Also I need some table? Or create tables directly in the report?
I am out of ideas to solve this problem, and would like to know some opinions and if possible please report it in the services.
First Editing:
I have data sessions in this session:
IdSession | Name session | Introduction Start time End time | 1 | Module 1 | 2013-01-01 | 2013-01-01 09:00:00 | 2013-01-01 09:00:00 | 2 | Module 2 | 2013-01-01 | 2013-01-01 14:00:00 | 2013-01-01 18:00:00 | 3 | Module 3 | 2013-01-02 | 2013-01-01 09:00:00 | 2013-01-02 09:00:00 | I have created a similar report, and it was a struggle. Eventually, I prepared a main report for column and row headings (hours and days), showing a subreport extension. That's why I created a dataset for the list of value of each hour (selection '8:00' union selection '8:30' union ... etc) and it was used as my line price. The column headers are calculated based on a indicated date - so the first column will be selected date, second column selected date plus one day etc. For a total of 6 columns, we usually sit down somewhere. The Nine Extension Report selects from the DB table based on the hours and date values passed from the main report.
Comments
Post a Comment