Call a column value from another table based on refference key column

I’m trying to call a value from another table based on a refference column

My tables are the following

Members
Participants

Members table has the following columns:
Members[Key]
Members[Name]
Members[Active] (Yes/No) Type

Participants table has the following columns
Participants[Key]
Participants[Member] - Ref to Members[Key]
Participants[MemberActive] - (this is the column i want to call from Members[Active] based on Participants[Member])

So, basically I want to know if when the member was registered as participant, the member account value was active or inactive.

Solved Solved
0 2 529
1 ACCEPTED SOLUTION

The syntax [Member].[Active] should be enough… there is no need to use table name with it.

View solution in original post

2 REPLIES 2
Top Labels in this Space