I am having some challenges to combine two conditions on a visible property on a data card. On the ApprovalStatus_DataCard1 Visible property, this is my expression : And(!IsBlank(txt_BillingEntity.Text)="example")
2 conditions work on its own. I am not sure how to combine them.
(1) If(txt_BillingEntity.Text<>"example", true, false)
(2) !IsBlank(txt_BillingEntity.Text)
do you know what am doing wrong? The approval status card should be visible if txt_BillingEntity.Text is not blank or txt_BillingEntity.Text does not have text value "example" in it. If txt_BillingEntity.Text equals "example" hide.