Access is not a spreadsheet. It is a relational database and in order to use it effectively, you must normalize your data. Instead of having a table with a repeating group of 120 columns, you should change the columns to rows. Once you do that, your queries will be a cinch. As it stands now, you'll be forever writing code to work with these tables.
You should end up with a table that looks like this:
Isage, DurNum, DurVal
35, 1, .4
35, 2, .3
35, 3, .2
35, 4, .1
...
35, 120, .01
36, 1, .35
36, 2, .25
36, 3, .15
36, 4, .05
...
36, 120, .005
To make this normalized table, you have two choices. Either 120 queries that transpose one column at a time or a code loop that builds the rows by looping through the Fields collection of the tabledef and inserting a row for each column in a new table.