Hi,
I am setting data in the App OnStart function. It works when I hit the Run OnStart button to test it. But when I publish the form, it doesn't seem work.
Similar to this post: OnStart or OnVisible only running once when opened from a sharepoint list
The code is simple, I am just trying to get an ID from a different list by another ID that is in both lists. I have tried a few different ways, like:
// Set(varEmploymentServiceID,Filter('The other List',Value(lblID.Text) = theField.Value).ID);
ClearCollect(colESData,Filter('The other List',lblID.Text = theField.Value).ID)
// If(!IsBlank(varEmploymentServiceID),Set(varESId, First(varEmploymentServiceID).ID),Set(varESId,0))
Both of these work when Run OnStart and then look at the variables. But it doesn't work when published and I try to do a Notify() to show me the ID.
Any Ideas??
Thanks,
Monty