Skip to main content

Notifications

Power Apps Pro Dev & ISV
Suggested answer

Checkbox inquiry

Posted on by 27
Need help.
 
1) I have a form with multi select checkbox, I created a table, and it shows object object as value, see ss here:
 
2) I need to enable these 3 text inputs if OTHER checkbox is selected.
  • Mashiiii Profile Picture
    Mashiiii 27 on at
    Checkbox inquiry
    for number 1:  thank you all for sharing work arounds and fix, but after trying nothing works. And wanted to share after continuous research, concat works for me > 
     
    Concat(ThisItem.Items, Value & ", ")
     
    Sharing it here incase someone needs it too.

    Hi, @FLMike,
     
    For number 2: Still not working after applying the suggestions.
     
    Again, I have multiple checkbox including "Other".
    I need to have the Other A, B, C, D fields enabled when "Other" checkbox is selected.
     
  • Suggested answer
    Talha_Dar Profile Picture
    Talha_Dar 870 on at
    Checkbox inquiry

    Hi, if you'd like to use Check Boxes with a multi-choice column, you'll need to use a workaround. You can follow the steps in the video linked below to learn how to achieve this:

    https://www.youtube.com/watch?v=xUep4uud1BE&t=38s&pp=ygUjcG93ZXJhcHBzIGNob2ljZSBjb2x1bW4gdG8gY2hlY2tib3g%3D

    If this helped solve your issue, please mark this as the solution so others can easily find it too. And if you found the content useful, feel free to give it a thumbs up!

  • Suggested answer
    Ravindra Jadhav Profile Picture
    Ravindra Jadhav 209 on at
    Checkbox inquiry
    Use belwo Trick
     
    //Create a collection
    ClearCollect(
        myTable47,
        {NickName: "Redwood", People: 10, Building: "Building A"},
        {NickName: "Oak", People: 25, Building: "Building A"},
        {NickName: "Pinetree", People: 8, Building: "Building B"},
        {NickName: "Cedar", People: 15, Building: "Building B"}
    );
    
    ClearCollect(myMeetingRooms47,
    {info:"This is a list of meeting rooms",value: myTable47});
    
    //Get a table stored in a cell code
    ClearCollect(mySolution47,Ungroup(myMeetingRooms47,"value"));
    
    
    
    I am assuming you have this object
     
     
    on text property use belwo code
     
    Frist(mySolution47).People
    Follow same approch for others as well
     
     
    Please Closed the Question, Mark it Solved 
     
    If my answer helped resolve your issue, please consider marking it as solved to assist others facing the same problem. Additionally, giving it a like would be greatly appreciated and motivates us to keep helping
     
    Thank You
    Ravindra Jadhav
  • Suggested answer
    FLMike Profile Picture
    FLMike 27,969 on at
    Checkbox inquiry
    Please explain and show us what type of Field that is.
     
    if its a multi-anything, the it means you are trying to display a Table, inside a single "value" hence why you see object object
     
    Whether its multi chocies, or mult0person select you will see something like this.
     
    As for your #2, in that case.
     
    in the display mode mode say
     
    if(CheckBox.Value = true, DisplayMode.Edit, DisplayMode.Disabled)
     
    of course change the Checkbox to the name of yours
     
     
     

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

September 2024 Newsletter…

September 2024 Community Newsletter…

Community Update Sept 16…

Power Platform Community Update…

Tuesday Tip #1 Subscribing to Forums…

Welcome to a brand new series, Tuesday Tips…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 141,422

#2
RandyHayes Profile Picture

RandyHayes 76,308

#3
Pstork1 Profile Picture

Pstork1 63,439

Leaderboard