Is there any way to display ticker objects in a random order? I tried ORDER BY RAND () in the ‘use advanced order clause’ field, but that didn’t work, not sure if this is even possible. My end goal is to have multiple tickers displaying from the same dataset in random order.
You will want to add a Formula column (let’s call it randomOrder) to your dataSet with the RAND() function, for example:
FLOOR(1+RAND() * 5)
(obviously with adjusted values as per your requirements)
Then in the ticker itself on order tab order it by randomOrder column.