DaveInIowa
Programmer
Is there any way to specify a field's Lookup:Row Source that references a previously set field in the same row?
As an example I've tried setting Row Source to:
I would like the [DefaultCourseId] value to be substituted with the data that was just entered for the DefaultCourseId field.
Does anyone know if this is possible?
Keep in mind I'm trying to accomplish this for a List Box on a Datasheet, not a form.
As an example I've tried setting Row Source to:
Code:
SELECT TeeId, Name FROM Tees WHERE (CourseId=[DefaultCourseId]);
Does anyone know if this is possible?
Keep in mind I'm trying to accomplish this for a List Box on a Datasheet, not a form.