@dave1707 The table I’m currently working with is:
Denominators = {}
Denominators[1] = {"1", " one ", " ones " }
Denominators[2] = {"2", " half ", " halves " }
Denominators[3] = {"3", " third ", " thirds " }
Denominators[4] = {"4", " fourth ", " fourths " }
Denominators[5] = {"5", " fifth ", " fifths " }
Denominators[6] = {"6", " sixth ", " sixths " }
Denominators[7] = {"7", " seventh ", " sevenths " }
Denominators[8] = {"8", " eight ", " eights " }
Denominators[9] = {"9", " ninth ", " ninths " }
Denominators[10] = {"10", " tenth ", " tenths " }
Denominators[11] = {"11", " eleventh ", " elevenths " }
Denominators[12] = {"12", " twelfth ", " twelfths " }
Denominators[13] = {"13", " thirteenth ", " thirteenths " }
Denominators[14] = {"15", " fifteenth ", " fifteenths " }
Denominators[15] = {"16", " sixteenth ", " sixteenth " }
Denominators[16] = {"17", " seventeenth ", " seventeenths " }
Denominators[17] = {"18", " eighteenth ", " eighteenths " }
Denominators[18] = {"19", " nineteenth ", " nineteenths " }
Denominators[20] = {"20", " twentieth ", " twentieths " }
Denominators[21] = {"21", " twenty first ", " twenty firsts " }
Denominators[22] = {"22", " twenty second ", " twenty seconds " }
Denominators[23] = {"23", " twenty third ", " twenty thirds " }
Denominators[24] = {"24", " twenty fourth ", " twenty fourths " }
Denominators[25] = {"32", " thirty second ", " thirty seconds " }
Denominators[26] = {"50", " fiftieth ", " fiftieths " }
Denominators[28] = {"64", " sixtty fourth ", " sixty fourths " }
Denominators[29] = {"100", " hundredth ", " hundredths " }
Denominators[30] = {"1000", " one thousandth ", " one thousandths " }
I want to look up by the first field in the record.
Thanks for the quick response,
dave