Condensing data from one field for one record

G

Guest

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!
 
G

Guest

The function should work. Come on back if you have a question of how to
implement it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top