Hello,
I'm attempting to set a variable OnStartup. Essentially, I want to pull the largest ID from my Sharepoint table and set it as a variable so that it is immediately usable as the largest ID to create a more custom ID.
OnStartup:
Set(varTXSOEntry,Value(SeqID.Selected.ID));
Where SeqID is the dropdown that I'm refencing the ID from.
I'm attempting to put varTXSOEntry into a text label with the formula:
"TX" & Text(varTXSOEntry,"01000")
The problem I'm running into is that even though my startup function is showing a SeqID = 85, my output to my text label is showing a value of 0.
Any advice?