Hi ,
I'm having below lookup statement on Onchange , It worked perfectly with one condition but with two conditions , it doesn't do the validation . There are no syntax errors . Pls help me
If(IsBlank(LookUp(AssetTransactions, AssetNumber=Self.Text && Completed.Value="Complete")),UpdateContext({RecValid: false}),UpdateContext({RecValid: true}),UpdateContext({MakeItRed:!MakeItRed}))
With only one condition it's working fine
If(IsBlank(LookUp(AssetTransactions, AssetNumber=Self.Text )),UpdateContext({RecValid: false}),UpdateContext({RecValid: true}),UpdateContext({MakeItRed:!MakeItRed}))
rgds
AD