Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Check Box Visible condition tied to another tables value

(1) ShareShare
ReportReport
Posted on by 107
Im building an App from a powerapps Table lets call it Table_1. Modern Controls are OFF.
 
In Table_1 I have a column called Product.
 
in Data I added Table_2 as an available datasource. In this table_2 I also have a Column called Product and 4 other Yes\No columns associated with "Cavity"  
 
in the app i dropped a container with 4 check boxes unassociated with any column in Table_1
 
is it possible to change the Visible property of the Check box to look for if a Yes\No column in Table_2?
 
I want the check box to be visible IF  for Product selected in the Product field of the form has Yes (True) listed for Cavity_A column in Table_2. 
 
Is this possible? Naturally if it is i will just repeat the process for the remaining 3 check boxes. 
 
I tried IF(Table_2.Cavity_A = True, True, False) but that did not work.
 
 
 
 
Categories:
  • CP-23071818-0 Profile Picture
    107 on at
    Check Box Visible condition tied to another tables value
    That worked!

    I actually Tweeked it to target a DataCardvalue9.SelectedText.Value and it changes live while the form is in Edit mode since the next step is to change the OnCheck and Uncheck properties to Relate and Unrelate and inevitabbly Patch information 

    Thank you!

  • Verified answer
    BCBuizer Profile Picture
    21,999 Super User 2025 Season 1 on at
    Check Box Visible condition tied to another tables value
    Hi @CP-23071818-0 ,
     
    For this you can leverage the LookUp function. Try setting the Visible property of the first checkbox to:
    !IsBlank(
        LookUp(
            Table_2,
            Product = Gallery1.Selected.Product && Cavity_A
        )
    )
    This works under the assumption that you have a gallery (Gallery1) where users can select a product from Table_1. If your gallery has a different name, or you use another method of selecting a product, changes will need to be made to the first condition in the LookUp formula.

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,587 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,928 Most Valuable Professional

Leaderboard