Access_Help
Registered User.
- Local time
- Yesterday, 19:17
- Joined
- Feb 12, 2005
- Messages
- 136
Did you apply any format() to your calculated field to get your Percentage. If you did, it will be formatted as a string, not a number.
Do you have any external criteria in your source wry_mark_grid which is coming direct from a Form? Would be more helpful if you can share that database or both queries.
Either of your Test Marks or AvailableMarks has zero value which is evaluting #DIV/0! error. Edit your calculation like below:
IIF(NZ([Test Mark],0)=0,0,IIF(NZ([AvailableMarks],0)=0,0,[Test Mark]/[AvailableMarks]*100))
You've some bad data with the full name "Student100".
Correct that and the query runs.
Whether it is minor or major error, depend on how you look at it.Thank you so much for spotting these minor mistakes.