Hi @Anonymous ,
Could you please share a bit more about the Number Field A in your Edit form? Is it connected to a Number field in your data source?
Is the DataCardValue1 represents the Text Input box within the Number field A data card?
Do you want to display the Number field B within your Edit form only when the entered value within the Number field A is < 2 or > 5?
Based on the formula that you provided, I think there is something wrong with it. I have made a test on my side, please take a try with the the following workaround:
Set the Visible property of the Number Field B data card in your Edit form to following:
If(
Value(DataCardValue1.Text) < 2 || Value(DataCardValue1.Text) > 5,
true,
false
)
If the DataCardValue1 represents a Dropdown box within your Edit form, please consider modify above formula as below:
If(
Value(DataCardValue1.Selected.Value) < 2 || Value(DataCardValue1.Selected.Value) > 5,
true,
false
)
If you want to mark the Number Filed B as Required when the Number Field B is visible, please take a try with the following workaround:
Set the Required field of the Number Field B Data card to following:
If(
NumberFiledB_DataCard.Visible,
true,
false
)
Please consider take a try with above solution, then check if the issue is solved.
Best regards,