Skip to content

icon picker
Time-Based Updates

Randomizer formulas take a seed that the random number is based on (a certain seed will always produce the same result). Choose a seed that changes when you want the result to change. You can put anything you want in there. Here are some examples with time-based formulas.

This number is updated every day:

➡️

Formula: RandomIntFromSeed( Today() )

This number is updated every minute:

➡️

It’ll update in
52
seconds
Formula: RandomIntFromSeed( Now().DateTimeTruncate("minute") )

This is last minute’s number:

➡️

Formula: RandomIntFromSeed( Now().DateTimeTruncate("minute") - minutes(1) )


Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.