S
Sandie
I have report that needs to list a schedule of sorts in the following way
Name
TaskID 1 Task Desc Mon, Wed, Fri
TaskID 2 Task Desc Tues, Thurs, Fri
My tables looks something like this:
Table: Tasks
TaskID
Task Name
Task Desc
Table: TaskDayAssignments
TaskID
TaskDayAssignment
So, a Task can have several different days of the week assigned to it (i.e.
several child recs in the TaskDayAssignment table) But since there can only
be a max of 7 days given to any Task, and I need to make as condensed a
report as possible, I'd like to be able to list the days across the report
instead of in rows. Is there a way to concatenate them or something? I think
a crosstab query might work but I'm not sure how to go about making it work.
As it is now, the report looks like this:
Name
TaskID 1 TaskDesc
Mon
Wed
Fri
TaskID 2 Task Desc
Tues
Thurs
Fri
As you can see, if I were able to string the days into one line, I'd save
alot of space on the page which is what I really need.
Any help is greatly appreciated!
Name
TaskID 1 Task Desc Mon, Wed, Fri
TaskID 2 Task Desc Tues, Thurs, Fri
My tables looks something like this:
Table: Tasks
TaskID
Task Name
Task Desc
Table: TaskDayAssignments
TaskID
TaskDayAssignment
So, a Task can have several different days of the week assigned to it (i.e.
several child recs in the TaskDayAssignment table) But since there can only
be a max of 7 days given to any Task, and I need to make as condensed a
report as possible, I'd like to be able to list the days across the report
instead of in rows. Is there a way to concatenate them or something? I think
a crosstab query might work but I'm not sure how to go about making it work.
As it is now, the report looks like this:
Name
TaskID 1 TaskDesc
Mon
Wed
Fri
TaskID 2 Task Desc
Tues
Thurs
Fri
As you can see, if I were able to string the days into one line, I'd save
alot of space on the page which is what I really need.
Any help is greatly appreciated!