In the diagram below, Recipe (1) (DataCardValue3_1) Item properties is as below:
Table(
{Value: "Omo Auto Wash(Add)", Lower: 590, Upper: 670},
{Value: "Omo Avenger", Lower: 500, Upper: 600},
{Value: "Omo Sunshine", Lower: 500, Upper: 600},
{Value: "Radiant", Lower: 350, Upper: 450},
{Value: "Sunlight Lite", Lower: 500, Upper: 600}
)The DefaultSelectedItems property of Status (3) combobox is:
With({_val: IfError(Value(DataCardValue4_1.Text), 0)},
{Value:
If(_val < DataCardValue3_1.Selected.Lower || _val > DataCardValue3_1.Selected.Upper, "Fail", "Pass")
}
)I want that, when I enter values lesser or greater in the BD input combobox, it should change to Fail and when I enter values between the ranges selected in the Recipe, the Status value should change to Pass.
Can anyone help out in this case with the BD conditioning parameters?
