I have a sharepoint list that is automatically populated with a daily exchange rate (Columns: CurrencyCode, FxDate,FxRate) and am trying to set a global variable (FxR) with the OnStart property of my app.
I am using the following, but it doesn't seem to be populating the variable.
What am I doing wrong?
Set(FxR,First(
FirstN(Sort(FxRates,FxRate, Descending),
1
)
)
)