Search results

  1. M

    Solved Calculated field from marks

    Thank you, that is essentially the model I was working on.
  2. M

    Solved Calculated field from marks

    Thanks for the tips
  3. M

    Solved Calculated field from marks

    Ah, that makes sense. I will take a look at it in detail tomorrow evening. Once again thank you for helping
  4. M

    Solved Calculated field from marks

    Thank you Larry, it is very kind of you to help.
  5. M

    Solved Calculated field from marks

    The only thing I can't see is how do year groups fall into this? In each cycle year (e.g 2023/2024) a subject will have a set of year12 classes and year13 classes.
  6. M

    Solved Calculated field from marks

    Wow, that looks way simpler than my design and does exactly what I am trying to do! Would you mind sharing the database you have created please so that I can check it does everything?
  7. M

    Hi and Thank you

    Thanks, some good advice. #3 is fun and frustrating in equal measure
  8. M

    Solved Calculated field from marks

    Sorry if I was not clear originally. Does my approach make sense? I have a working (sort of) system that produces a nice grade table. I have entered legacy data by unpivoting my spreadsheet and doing a copy paste. I have not really started on the UI yet. I am trying to get my database to be...
  9. M

    Solved Calculated field from marks

    I don't assign grades. I have grade boundaries for each test. I only store raw mark for each test in the table student_has_assesment. I then use a select query and assign grades when I need to see them (it seems redundant to store grades and it is an automated process this way).
  10. M

    Solved Calculated field from marks

    Ha ha, that is fine. I may have not set out my intentions clearly. I am trying to make a student tracking system to replace our multiple spreadsheets. Here are the intentions : A student starts with us in Y12 They will study three subjects for two years. At present I am sure only...
  11. M

    Solved Calculated field from marks

    I have an email with a reply from you but I can't see it on the thread.?
  12. M

    Solved Calculated field from marks

    I will think about your suggestions.
  13. M

    Solved Calculated field from marks

    They are describing many-to-many relationships. Each subject can be in many year groups and each year group can contain many subjects. Assessments can be different papers each year with different numbers of marks. Therefore I have a junction table as each assessment can be in many...
  14. M

    Solved Calculated field from marks

    Yes, that is a good description of the process.
  15. M

    Solved Calculated field from marks

    Thanks so much. The normalisation tip was very useful. Hopefully the rest of tables and relationships are okay.
  16. M

    Solved Calculated field from marks

    Quick question, why are the ranges not continuous? ie, 75->85, 65->75, etc. What if a student has 84.5 %?
  17. M

    Solved Calculated field from marks

    Right, I have anonymised the data and cut it down to two students. The database is attached. I have the following query set up in design view: the sql generated is SELECT Student.student_id, Student.fullname, Assessment.title...
  18. M

    Solved Calculated field from marks

    Right I am home now and I can see my mistake in trying to have a gradeset as a single record. I am going to do some re-organising of logic. Thanks for the idea
  19. M

    Solved Calculated field from marks

    I take your point. I will have to make a copy and empty my db to get rid of names. I will do so when I get home. Thank you for the suggestion
  20. M

    Solved Calculated field from marks

    I have looked the approach you have made. The vba function is making two queries every time it is called. Is this going to slow things down? I realised that I can get the grade boundaries in my original query. Would it be more efficient to use those and pass them to my function to avoid...
Back
Top Bottom