As a scratch golfer (I scratch out my real score and put in what looks good)

it's an interesting problem. If the "amount" fields are scores in a round they belong in their own table. If they're not scores, you should explain what they are. So possibly
- table for courses (name, location, slope, maybe your ranking, things that are attributes of the course. That could include par info and counts.
- table for rounds; linked to tblCourses via CourseIDfk > tblRoundsIDpk. This holds scores. Don't total a round in a table. Calculations are almost always done in forms/reports
- table for players; linked to tblRounds via RoundIDfk > PlayerIDpk
That's off the top of my head.
BTW, if you have to repeatedly write out those field names it will become quite tedious.
EDIT - BTW, not doing calculations in tables should mean not identifying eagle, birdie, etc. in any table. How you id those could be interesting, but again, done in form or report.