Very new to this…hope this makes sense.
I have two tables being called into the app: userstable and gametable.
usertable has schema (name, g1, g2, g3)
Data:
Name g1 g2 g3
Phil yes no no
gametable has schema (gameid, date, game)
Data:
gameid date game
g1 oct 3 checkers
g2 oct 5 chess
g3 oct 7 cards
On one of the app screens, I want to list all the games (repeated data variable pulled from gametable) but with the values from usertable based on logged in user.
Example:
Oct. 3 - checkers - yes
Oct. 5 - chess - no
Oct. 8 - cards - no
So on the repeat value for the yes/no, I need a formula like the following:
data.usertable.(data.gametable.gameid) which would go through data.usertable.g1, data.usertable.g2, and data.usertable.g3
How do I get the gameid within this formula? Does this make sense? Thanks