Hi folks! I have a variable 'MyVariable' that increases by a random number every 1 second. I wish to display it with comma separator (e.g. 750,000,000) and I do:
Set Text > RegexReplace(str(MyVariable), "\B(?=(\d{3})+(?!\d))", "g", ",")
However, I also wish to update this text every tick, so it will "count very fast" 1 by 1, despite the fact that I can add to MyVariable larger numbers than 1. How to achieve this saving my text formatting (comma separator)?