Hi
I have a row source that is based of Profile_Table.
The first column in this row source is Profile_ID
I want to create a criteria that exclude ID numbers if they are represented in Time_Table.
Example.
If i have Profile_ID "77"
It will show in my row source.
But if i add The number "77" in column Profile_ID (secondary key) in table Time_Table
I want this record to not show in row source seletion.
Is this possible?
If profile_table.profile_id = time_table.time_id then
exclude from query
else
include in query
end if
I have a row source that is based of Profile_Table.
The first column in this row source is Profile_ID
I want to create a criteria that exclude ID numbers if they are represented in Time_Table.
Example.
If i have Profile_ID "77"
It will show in my row source.
But if i add The number "77" in column Profile_ID (secondary key) in table Time_Table
I want this record to not show in row source seletion.
Is this possible?
If profile_table.profile_id = time_table.time_id then
exclude from query
else
include in query
end if