I don't know if I'm completely dense or if it is the flu that is causing my cognitive abilities to go right out the window. In my mind, this is the simplest thing, but maybe I'm going about it all wrong.
I am creating a worksheet form, that pulls data from multiple lookup tables, then some simple calucations will occur.
I am starting with (what I thought) would be the simplest, which is using a table called PayScale.
In Payscale, each record contains:
Position1 (txt)
Rate1 (number)
Rate2 (number)
Rate3 (number)
..
Rate10 (number)
i.e.
**There are 22 positions (therefore 22 records), with all positions having between 4 and 10 different pay rates for EACH position (all rates are in each record and they are different for each record)
So, on my WorkSheet Form, I have started off with a combobox to select the Position, then a separate combobox to select the Rate# in hopes to populate a txtbox with the rate from the table. Additionally, I need to be able to have them enter into another txtbox, the number of days that the Position will be paid for, to generate a total in a THIRD txt Box.
So visually, I would like it to be:
I have many more sections to this Worksheet to work out, but my hope is that once I have this basis figured out, I can apply it to the remaining sections.
I have not done ANY "programming" in Access is years and so I may need direction on where to place code that may be required.
As always, any help is appreciated!

I am creating a worksheet form, that pulls data from multiple lookup tables, then some simple calucations will occur.
I am starting with (what I thought) would be the simplest, which is using a table called PayScale.
In Payscale, each record contains:
Position1 (txt)
Rate1 (number)
Rate2 (number)
Rate3 (number)
..
Rate10 (number)
i.e.
Code:
Position1 85.70 87.78 91.24 93.74
Position2 92.78 94.89 96.66 98.88 101.12 104.12 108.90 111.11
**There are 22 positions (therefore 22 records), with all positions having between 4 and 10 different pay rates for EACH position (all rates are in each record and they are different for each record)
So, on my WorkSheet Form, I have started off with a combobox to select the Position, then a separate combobox to select the Rate# in hopes to populate a txtbox with the rate from the table. Additionally, I need to be able to have them enter into another txtbox, the number of days that the Position will be paid for, to generate a total in a THIRD txt Box.
So visually, I would like it to be:
Code:
Combobox ComboBox TxtBox TxtBox TxtBox
Position1 Rate3 85.74 3 257.22
I have many more sections to this Worksheet to work out, but my hope is that once I have this basis figured out, I can apply it to the remaining sections.
I have not done ANY "programming" in Access is years and so I may need direction on where to place code that may be required.

As always, any help is appreciated!

Last edited: