I have the following as the Default property of a field in a Power App.
If(!IsBlank(DataCardValue102.Selected),LookUp(ShopRateInfo,CraftSR = DataCardValue102.Selected.CraftSR).CraftRate)
The format works properly until I add the portion underlined below.
If(!IsBlank(DataCardValue102.Selected),LookUp(ShopRateInfo,CraftSR = DataCardValue102.Selected.CraftSR && FiscalYear = Text(DataCardValue2)).CraftRate)
Essentially I want to lookup up a value in SP List "ShopRateInfo" when there is a match as follows...
Any suggestions how to address?