cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

add skip logic on gallery form

I create a dynamic form with Gallery base on Reza' tutorial below and now I would like to add a skip question base on the response on questions.

e.g.

Question 1 with Option A and Option B

If Answer is 

Option A -> Go to Question 2 

Option B -> Go to Question 3

 

https://youtu.be/wQqetH2QLyk?si=m_3CDMfC79p1iVkU

 

ed120800_0-1716144505758.png

 

Is it possible?

 

 

2 ACCEPTED SOLUTIONS

Accepted Solutions

@ed120800 

Sorry, I wasn't focusing on your data. I think the best option is to create a collection of Questions that need to be completed when a user selects "I do not consent" to the question before it.

 

To help do this, I'd suggest adding a column to your List called 'ConsentReqd' of Type TEXT. Then, for the questions that need to be completed if the previous one was selected as "I do not consent", set these to "Yes". All other questions set to "No". Here's some example data of what I mean

ClearCollect(
    colData,
    {Title: "Question1", ColType: "Choice", Required: "Yes", Choices: "I have consented;I do not consent", ConsentReqd: "No", Data: ""},
    {Title: "Question2", ColType: "Text", Required: "Yes", Choices: "NA", ConsentReqd: "Yes",Data: ""},
    {Title: "Question3", ColType: "Choice", Required: "Yes", Choices: "I have consented;I do not consent", ConsentReqd: "No", Data: ""},
    {Title: "Question4", ColType: "Number", Required: "Yes", Choices: "NA", ConsentReqd: "Yes", Data: ""},
    {Title: "Question5", ColType: "Text", Required: "Yes", Choices: "NA", ConsentReqd: "No", Data: ""}
);

 

Then to the App OnStart add this

ClearCollect(
    colChoiceResponses,
    ShowColumns(Filter( colFormTemplate, ConsentReqd = "Yes"), Title)
)

 

Gallery Items becomes

Filter(
    colData,
    !(Title in colChoiceResponses.Title)
)

 

OnChange of your Dropdown

With(
    {
        wQuestionNum: "Question" & Value(Substitute(ThisItem.Title, "Question", ""))+1
    },
    If(
        Self.Selected.Value = "I do not consent" && CountRows(Filter( colChoiceResponses, Title = wQuestionNum ))=1,
        RemoveIf( colChoiceResponses, Title = wQuestionNum),
        Collect(
            colChoiceResponses,
            {
                Title: wQuestionNum
            }
        )
    )
)

 

There are a number of assumptions with the above:

- the consent question (ie ConsentReqd = "Yes") ALWAYS follows the Choice question where consent is being asked - eg If Consent being asked = Question1 then the related question must be Question2

- The consent Choices are ALWAYS "I have consented;I do not consent" and in this order

- your ShowColumns() must always include the field 'Title'

- there maybe other assumptions I've forgotten

 

Give that a go and see how you get on


If my response solves your question, please accept as a solution.
Thank you!

View solution in original post

@ed120800 

You don't need to use that code. It is just example code - a mock-up of your SharePoint List - to demo how I used the other bits of code


If my response solves your question, please accept as a solution.
Thank you!

View solution in original post

22 REPLIES 22
EddieE
Super User
Super User

@ed120800 

Yes this is possible. Will depend on the logic you have setup when a User selects a Q1 option. If you share some code I can help further - sorry, I'm not going to watch that video.


If my response solves your question, please accept as a solution.
Thank you!

@EddieE 

Let me give you some detail of my case. 

My app will connect to 2 SharePoint list ("Form Template" and "Form Result"). 

 

1.  Form Template <- It store the survey questions and related attribute (e.g Column Type, Required) 

ed120800_0-1716169350856.png

I use collection to get the SharePoint list column and add 1 column "Data" in the table. 

------------Code Start ------------------

OnStart=

ClearCollect(
colFormTemplate,
AddColumns(
ShowColumns(
'Form Template 4',
Title,
Question,
Required,
ColumnType,
Choices
),
Data,
""
)

------------Code End------------------

2. I have a button with below code to start the dynamic form on gallery

------------Code Start ------------------

OnSelect =

ClearCollect(
colData,
colFormTemplate
);

Set(varFormMode,"New");
Set(varItem,Defaults('Form Result 4'));
Navigate(Dynamic);

------------Code End------------------

3. The gallery will have 3 object to display question and collect response ( textlabel , drop down , textinput) 

    I use below code the get the gallery and this will list out all question by rrder 

------------Code Start ------------------

   Item = ColData

------------Code End -------------------

 

ed120800_2-1716171308740.png

 

I have no idea how to apply skip logic in this gallery. 

This is what I have right now. 

 

 

 

@ed120800 

Ok, thanks. I don't think you are looking for 'skip' but to Filter the gallery. Try this

// OnChange of DropDown inside the gallery
Set( vQuestion1Response, Self.Selected.Value);

// Items property of the question gallery
Filter(
    colFormTemplate,
    (vQuestion1Response <> "I do not consent" || Title <> "Question2")
)

 

Note: the second part of the filter will likely give you a delegation warning for using '<>' but you can ignore this if you have less than 2,000 questions - assuming you have set the Data row limit to the Max 2,000.

 


If my response solves your question, please accept as a solution.
Thank you!

@EddieE 

I have tried to change the code but didn't work out.

 

ed120800_1-1716178354595.png

I change the collection from colFormTemplate to colData as I have add a new collection in #2

ed120800_2-1716178437873.png

 

 

 

 

@ed120800 

Sorry, I wasn't focusing on your data. I think the best option is to create a collection of Questions that need to be completed when a user selects "I do not consent" to the question before it.

 

To help do this, I'd suggest adding a column to your List called 'ConsentReqd' of Type TEXT. Then, for the questions that need to be completed if the previous one was selected as "I do not consent", set these to "Yes". All other questions set to "No". Here's some example data of what I mean

ClearCollect(
    colData,
    {Title: "Question1", ColType: "Choice", Required: "Yes", Choices: "I have consented;I do not consent", ConsentReqd: "No", Data: ""},
    {Title: "Question2", ColType: "Text", Required: "Yes", Choices: "NA", ConsentReqd: "Yes",Data: ""},
    {Title: "Question3", ColType: "Choice", Required: "Yes", Choices: "I have consented;I do not consent", ConsentReqd: "No", Data: ""},
    {Title: "Question4", ColType: "Number", Required: "Yes", Choices: "NA", ConsentReqd: "Yes", Data: ""},
    {Title: "Question5", ColType: "Text", Required: "Yes", Choices: "NA", ConsentReqd: "No", Data: ""}
);

 

Then to the App OnStart add this

ClearCollect(
    colChoiceResponses,
    ShowColumns(Filter( colFormTemplate, ConsentReqd = "Yes"), Title)
)

 

Gallery Items becomes

Filter(
    colData,
    !(Title in colChoiceResponses.Title)
)

 

OnChange of your Dropdown

With(
    {
        wQuestionNum: "Question" & Value(Substitute(ThisItem.Title, "Question", ""))+1
    },
    If(
        Self.Selected.Value = "I do not consent" && CountRows(Filter( colChoiceResponses, Title = wQuestionNum ))=1,
        RemoveIf( colChoiceResponses, Title = wQuestionNum),
        Collect(
            colChoiceResponses,
            {
                Title: wQuestionNum
            }
        )
    )
)

 

There are a number of assumptions with the above:

- the consent question (ie ConsentReqd = "Yes") ALWAYS follows the Choice question where consent is being asked - eg If Consent being asked = Question1 then the related question must be Question2

- The consent Choices are ALWAYS "I have consented;I do not consent" and in this order

- your ShowColumns() must always include the field 'Title'

- there maybe other assumptions I've forgotten

 

Give that a go and see how you get on


If my response solves your question, please accept as a solution.
Thank you!

@EddieE 
May I know where to put below code? 

 

ClearCollect(
    colData,
    {Title: "Question1", ColType: "Choice", Required: "Yes", Choices: "I have consented;I do not consent", ConsentReqd: "No", Data: ""},
    {Title: "Question2", ColType: "Text", Required: "Yes", Choices: "NA", ConsentReqd: "Yes",Data: ""},
    {Title: "Question3", ColType: "Choice", Required: "Yes", Choices: "I have consented;I do not consent", ConsentReqd: "No", Data: ""},
    {Title: "Question4", ColType: "Number", Required: "Yes", Choices: "NA", ConsentReqd: "Yes", Data: ""},
    {Title: "Question5", ColType: "Text", Required: "Yes", Choices: "NA", ConsentReqd: "No", Data: ""}
);

@ed120800 

You don't need to use that code. It is just example code - a mock-up of your SharePoint List - to demo how I used the other bits of code


If my response solves your question, please accept as a solution.
Thank you!

@EddieE 

Thanks for reply.

 

I try the code and it show error on the dropdown 

ed120800_0-1716255831302.png

 

@EddieE 

It works out when I change "value" to "result" 

You are awesome.

Many Thanks 

 

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (710)