I have a repeater that I added a random number to. I also want to have text appended to the end. this is to display the number of days ago, so I have[[Math.floor(Math.random() * 50) + 1]] and then want to add “days ago” behind that. This seems simple, but nothing seems to work. Any help would be appreciated.
You should just be able to add “days ago” at the end of your formula:
[[Math.floor(Math.random() * 50) + 1]] days ago
AppendingText.rp (49.5 KB)
Thank you. I thought I tried that.