Hi @WaMCHCH ,
Could you please share a bit more about your scenario?
Do you want to link the Q1, Q2, Q3, Q4 column in your Response Entity to the QuestionNumber column in your QuestionList Entity?
Based on the needs that you mentioned, I afraid that there is no direct way to achieve your needs in PowerApps currently. As an alternative solution, I think the AddColumns function and nested Gallery could achieve yuor needs.
I have made a test on my side, please take a try with the following workaround:
Add a Gallery (Gallery1) in your app, set the Items property to following:
AddColumns(
QuestionList,
"Q1Response",
ShowColumns(Response, "EmpID" "Q1"),
"Q2Response",
ShowColumns(Response, "EmpID" "Q2"),
"Q3Response",
ShowColumns(Response, "EmpID" "Q3"),
"Q4Response",
ShowColumns(Response, "EmpID" "Q4"),
)
Then within above Gallery, add a nested Gallery (Gallery2), set the Items property to following:
If(
ThisItem.QuestionNumber = 1,
ThisItem.Q1Response,
ThisItem.QuestionNumber = 2,
ThisItem.Q2Response,
ThisItem.QuestionNumber = 3,
ThisItem.Q3Response,
ThisItem.QuestionNumber = 4,
ThisItem.Q4Response
)
Within the Parent Gallery, you could display the QuesitonNumber, QuestionDescription info using some Label controls. Within the nested Gallery, you could display the EmpID, and corresponding Question response info. Please consider take a try with above solution, then check if the issue is solved.
More details about adding a nested Gallery in PowerApps app, please check the following video:
https://www.youtube.com/watch?v=ZzQ1t2sQvj8
Best regards,