In my app (source is dataverse), I retrieve a record number as a result on my browse gallery.
See this formula:
ForAll(Distinct('AM Expense Records', 'Record Number'.'Record Number'),{Result: ThisRecord.Value})
Later on, in my edit screen, I like to add more rows to the same record number. Right now, I have this formula
'Record Number': LookUp('AM Expense Record Numbers','Record Number' = galBrowse.Selected.Result)
Please, how can I assign the result (that I got earlier) to the record number in this step above without having to do a Lookup again? My app is very slow right now and I am trying to optimize it. Thank you!