Okay
Had a look at the zip but unfortunately I am not fluent in your language so a bit of guesswork.
Basically I believe that you have a single list of Football Clubs and there will be a total of 132 matches.
So the table [tbl_indeling] will have a relationship 1 to many with the table [tbl_speelschema] to both the participating teams in each match.
The tbl_indeling should contain only that information that truly relates to that particular Team (Name, Home Stadium etc) None of the information in this table should really influence the tbl_speelschema.
The tbl_speelschema should have information that relates only to each fixture, such as start time, result. etc
This process in known as Normalisation
This way you have data independance and do not have data update situations.
You have created the fixture list and need to review what you would change in the tbl_indeling that affects tbl_speelschema.
Probable result of this exercise is to identify those items that should not be in tbl_indeling.
HTH
L