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.