Can someone please explain to me why option 1 & 3 both work here and yet option 2 wont work?
Option 1: LookUp('EVA/EXCEL_AvgCherryWeights', FarmName=Gallery1.Selected.FarmName && VarietyDesc=Gallery1.Selected.VarietyName).AvgCherryGrams
Option 2: LookUp(TempAvgCherryWeights, FarmName=Gallery1.Selected.FarmName && VarietyDesc=Gallery1.Selected.VarietyName).AvgCherryGrams
Option 3: LookUp(TempAvgCherryWeights, FarmName="Bambara" && VarietyDesc="Kordia").AvgCherryGrams
where Option 1 is directly looking up the SQL table
where Option 2 is looking up a collection that is EXACTLY the same as the table and the data is defintely in there
where Option 3 is explicity typing out the text fields that I'm trying to lookup
Is my powerapps just having a bad day or am I missing something?