Hi, So I am trying to make a data card only become visible IF the fields in 4 other data cards are populated with "Yes"
I have got the following code in the "On Visible" property of the data card:
f(
Text(TextInput2_5.Text) = "Yes",
true,
false
) & If(
Text(TextInput2_4.Text) = "Yes",
true,
false
) & If(
Text(TextInput2_3.Text) = "Yes",
true,
false
) & If(
Text(TextInput2_2.Text) = "Yes",
true,
false
)
I am getting a warning that says this , is this just because the fields are currently blank? or is there something wrong with this code?
Very new to powerapps, grateful for all help!

Creating Apps