Hello everyone,
I have 2 tables :
Table 1 : listing the users and the transactions they have access to :
User Transaction user1 A user1 B user1 E user1 C user2 D user2 E user2 A
Table 2 : Listing the transactions that a single user cannot have access to at the same time.
Transaction 1 Transaction 2 A B D E A C
I need a query that will return only users who have conflicts as defined in Table 2, The result will be as follows:
USER Transaction 1 Transaction 2 user1 A B user2 D E user1 A C
In Excel I would use the vlookup function with and AND condition, the data I have is loo large to be calculted in Excel so I am trying to use MS Access.
Any ideas ?
Thanks a lot for your help.