Access_Help
Registered User.
- Local time
- Today, 13:39
- Joined
- Feb 12, 2005
- Messages
- 136
Is there any way of producing a crosstab query with multiple value fields?
I'm producing a report that will list the subjects for each day of the week by period. At the moment it is only pulling one set of values from the query. E.g. it is only showing Science and Not maths which is also timetabled at the same time
I want an Access report designed so that it can be produced with no manual manipulation. I don't want to create multiple cross tab queries as that would be too much work for all the subjects
Here is the SQL, I am not an SQL programmer so would need help to edit this code or find a quick solution around it.
I'm producing a report that will list the subjects for each day of the week by period. At the moment it is only pulling one set of values from the query. E.g. it is only showing Science and Not maths which is also timetabled at the same time
I want an Access report designed so that it can be produced with no manual manipulation. I don't want to create multiple cross tab queries as that would be too much work for all the subjects
Here is the SQL, I am not an SQL programmer so would need help to edit this code or find a quick solution around it.
TRANSFORM Max(tbl_block_assignment.Block) AS MaxOfBlock
SELECT tbl_block_assignment.Period
FROM tbl_Blocks INNER JOIN tbl_block_assignment ON tbl_Blocks.Block = tbl_block_assignment.Block
GROUP BY tbl_block_assignment.Period
PIVOT tbl_block_assignment.Day;