Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Microsoft Dataverse
Unanswered

CDS linking a field to a column in another entity

(0) ShareShare
ReportReport
Posted on by 26

Question.PNG

 

Hello,

I have three entities: "Heading", "QuestionList", "Response"

-A question belong to a heading group

-Response has mulitple colum of Question's response of a Yes/No answer.

 

Question: How do I create a relationship so that Response.Q1 know about QuestionList.QuestionNumber. (for querying later on)

[so that if I look at question number 1 I will know all the responses to that question and if I look at Response.Q1 i know the QuestionDescription] I want each column in Response to link to a question number. [Response.Q1 = QuestionList.QuestionNumber 1]

Categories:
  • v-xida-msft Profile Picture
    on at
    Re: CDS linking a field to a column in another entity

    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,

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

🌸 Community Spring Festival 2025 Challenge Winners! 🌸

Congratulations to all our community participants!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Leaderboard > Power Apps - Microsoft Dataverse

#1
mmbr1606 Profile Picture

mmbr1606 22 Super User 2025 Season 1

#2
stampcoin Profile Picture

stampcoin 19

#3
Michael E. Gernaey Profile Picture

Michael E. Gernaey 15 Super User 2025 Season 1

Overall leaderboard

Featured topics