Variable as FieldName to populate a combobox

M

Matt Shiells-Jones

OKay - this is probably really reall easy but I cannot for the life of me figure it out...

I have 3 tables that I want to cross reference (sort of) -

Table 1 - students, contains fields that specify the training they are to attend - so Everyone, Credit Control etc... - these are all Yes/No fields for easy updating of what training is required for an individual.


Table 2 - the courses, stored with coursename and unique ID

Table 3 - course attendance - contains a student ID and course ID to link a student to a course.


What I want is this (most is already done, just stuck on a dropdown list!)...

The name of the course is stored in a field on the form 'frmCourseSchedule' as the field 'CourseName'. I want to use the value of this field to limit the list of available students in the dropdown list according to whether or not they need the course, and whether or not they have attended:

I need something like:
SELECT FirstName FROM tblStudents WHERE [Forms!frmCourseSchedule.CourseName] = True

So if I wanted to assign people for the 'Everyone' Module the above query would limit to only people who have 'TRUE' in the 'Everyone' field of their record...


can anyone explain how to do this as its driving me mad - I am very proficient but this has really got me flummoxed - how would I then get this to execute in a query?


Submitted via EggHeadCafe - Software Developer Portal of Choice
SQL Server Dynamic WHERE clause without exec
http://www.eggheadcafe.com/tutorial...1d-4ee20a205ab2/sql-server-dynamic-where.aspx
 
D

Duane Hookom

If you have training names as field names, then IMO your table structure is
wrong. You need to normalize so you won't have to ask how to get field names
into a combo box. You will more easily be able to display field values once
your tables are set up correctly.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top