Hi @neerajalig,
Do you want to make a field mandatory when fieldA or fieldB toggles changes from Yes to No?
Could you please share a bit more about your scenario?
Actually, only when both the "FieldA", "FieldB" toggles with Yes value will trigger the action, right?
Assume that you have these fields in a form.
Set the Required property of the data card as below:
If(
ThisItem.fieldA = true && ThisItem.fieldB = true,
If(
DataCardValue9.Value = false || DataCardValue10.Value = false,// Here are two separate Toggles
true,
false
)
)