Hi all,
I have a button which uses runactions to wrap two actions, sequentially:
- open a window
- open a specific row on the table(which is a view of a table)
The problem I ran into is, despite the sequential order specified in formula, the openrow() functions seems to always get executed first, resulting in a pop-up quickly disappearing into a page
Any idea how to fix that?
Maybe you could try the experimental _Delay() formula to make it wait a bit with opening the row 
Thanks! _delay solved the issue. So it seems that runactions does start the actions simultaneously, however it does not wait for the first one to finish before starting the next one. Interesting
Hey Scott, thanks for helping! the issue is resolved with _delay() function. Thanks!