The three tables I have are tblMain -> tblMonth -> tblYear.
tblMonth has a lookup field for the Year and it doesn't show the first column (column 0) which is the id, only shows the year #. So if I open tblMonth I see January with a field next to it being a drop down for the year.
in tblMain I am pulling both Month and Year fields from tblMonth. Rather than getting January, then a pull down of the year, I'm getting a pull down of the ID#.
This is the row source code...
SELECT [tblReviewMonth].[MonthID], [tblReviewMonth].[ReviewMonth], [tblReviewMonth].[ReviewYear] FROM tblReviewMonth;
Oddly enough, when I go to the query builder for that line it shows it just as I want it (except month id), but in the drop down on the actual table & form, it is showing the id field for the year. I increased it show 4 columns on the form and make sure each one had 1 inch and it is only showing monthid, monthname, yearid, and then a blank space. I know this can't be hard to fix, but I can't figure it out.
-Nate
tblMonth has a lookup field for the Year and it doesn't show the first column (column 0) which is the id, only shows the year #. So if I open tblMonth I see January with a field next to it being a drop down for the year.
in tblMain I am pulling both Month and Year fields from tblMonth. Rather than getting January, then a pull down of the year, I'm getting a pull down of the ID#.
This is the row source code...
SELECT [tblReviewMonth].[MonthID], [tblReviewMonth].[ReviewMonth], [tblReviewMonth].[ReviewYear] FROM tblReviewMonth;
Oddly enough, when I go to the query builder for that line it shows it just as I want it (except month id), but in the drop down on the actual table & form, it is showing the id field for the year. I increased it show 4 columns on the form and make sure each one had 1 inch and it is only showing monthid, monthname, yearid, and then a blank space. I know this can't be hard to fix, but I can't figure it out.
-Nate