I have 4 tables in a MS Access database, namely
Table1(values - A, B, C, D)Table2(values - P, Q, R, S)Flags(values - Y, N)Table3has two columns,TYPEandDESCRIPTION
The TYPE column is a lookup from the FLAGS table (ie Y or N).
The DESCRIPTION column is also a lookup column, using Y or N values from the TYPE column.
- If Y, then lookup all values from
Table1(ie A, B, C, D) - If N, then lookup all values from
Table2(ie P, Q, R, S)
How to achieve this?