JamesDoingAccessStuf
New member
- Local time
- Yesterday, 23:11
- Joined
- Aug 29, 2019
- Messages
- 5
Hey everyone,
I've been building this database for a local library reading program. I'm now trying to generate charts to show various reading visits throughout the day.
I created the query below to display the data in a way that makes sense, that is grouped by day and then time:
MS access then takes my query and reverses the grouping making the data unreadable. This is what it ends up showing (From the Transformed Row Source):
I can't seem to edit the transformed row source directly without getting the following error: "You can't assign a value to this object"
I don't feel very familiar with how charts work in access so sorry if I'm missing something obvious. I tried googling it but google didn't seem to understand me.
Any solution that would allow me to control the way the data is grouped on the chart would be amazing.
Thanks so much, James
I've been building this database for a local library reading program. I'm now trying to generate charts to show various reading visits throughout the day.
I created the query below to display the data in a way that makes sense, that is grouped by day and then time:
Code:
SELECT TblStudentVisitsToLibrary.[DayOfReadingVisit], TblStudentVisitsToLibrary.[TimeSlot], Count(TblStudentVisitsToLibrary.[VisitID]) AS CountOfVisitID
FROM TblStudentVisitsToLibrary
GROUP BY TblStudentVisitsToLibrary.[TimeSlot], TblStudentVisitsToLibrary.[DayOfReadingVisit]
ORDER BY TblStudentVisitsToLibrary.[DayOfReadingVisit], TblStudentVisitsToLibrary.[TimeSlot];
MS access then takes my query and reverses the grouping making the data unreadable. This is what it ends up showing (From the Transformed Row Source):
Code:
SELECT qryPopularityOfReadingVisitsByDay.[DayOfReadingVisit], qryPopularityOfReadingVisitsByDay.[TimeSlot], Sum(qryPopularityOfReadingVisitsByDay.[CountOfVisitID]) AS SumOfCountOfVisitID
FROM qryPopularityOfReadingVisitsByDay
GROUP BY qryPopularityOfReadingVisitsByDay.[DayOfReadingVisit], qryPopularityOfReadingVisitsByDay.[TimeSlot]
ORDER BY qryPopularityOfReadingVisitsByDay.[TimeSlot], qryPopularityOfReadingVisitsByDay.[DayOfReadingVisit];
I can't seem to edit the transformed row source directly without getting the following error: "You can't assign a value to this object"
I don't feel very familiar with how charts work in access so sorry if I'm missing something obvious. I tried googling it but google didn't seem to understand me.
Any solution that would allow me to control the way the data is grouped on the chart would be amazing.
Thanks so much, James