Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Arun,
load your CityField name twice in both tables like:
MasterData:
Load
CityName
CityName as CityNameMaster
....
Transaction:
CityName as CityNameTrans
Now you can select possible or excluded values in the listboxes.
If you want only have transaction data for CityNames in your Master Date than use:
CityName,
From ...
Where Exists (CityName);
as example.
Good luck!
Rainer