Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reports in Calendar Look 1

Status
Not open for further replies.

llam

Programmer
Feb 12, 2002
37
CA
Hi, I am having problem to generate reports in calendar look. I am currently working on a database containing all the vacation information for all staff. Vacations are stored as (Employee),(VacationStart),(VacationEnd). I would like to generate a report that organize the information as a calendar, such as:

Code:
             January          February       March
            Wk1 Wk2 Wk3 Wk4  Wk1 Wk2 Wk3 Wk4 Wk1 Wk2 Wk3 ...
(Employee1)         =======        ===
(Employee2)             ===      ===========
...

It is possible to generate a report similar to this in microsoft access? Thx!

--llam
 
Just to take a shot at this during lunch...

If you could somehow create a temp table by extrapolating the exact days from the Vacations table that has each employee and every day of the year, it would be very easy to print. Your temp table would look something like:

(Employee), (Jan1), (Jan2), (Jan3),...
--------------------------------------
Bart Simpson, X , X , O ,...

Of course, this will get you a failing grade in DBases 101.

I can't figure out how to get the actual days from the table you presented...back to lunch.
A+, N+, MCP
 
Similar to yours, is it possible that I create a report with the detail part having squares (or other objects) for each week. Each time the detail part is being load for each employee, each square check itself whether it is within range of any vacation. If it is, it show itself or highlight itself. Do you think it works in microsoft access's reports? Thx!

Code:
<Vacation Table>
-> <Employee>
  ->  [] [] [] [] [] [] [] [] [] [] [] [] [] [] ...

Outcome:
Vacation Calendar
Employee1: [ ] [ ] [ ] [ ] [X] [X] [X] [ ] [ ] [ ] 
Employee2: [ ] [X] [X] [X] [X] [X] [ ] [ ] [ ] [ ] 
...

--llam
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top