How to prevent randomizer to generate the same numbers

hello everyone. is there a way to prevent randomizer from generating same or duplicate numbers like id numbers and avtivation code?

@kingkoy2 There isn’t a direct way of achieving this, what I did was to have 2 random number generators together. It is unlikely that the combination will ever be repeated.

ex: Rand(100000,999999)-Rand(100000,999999) = 137812-653621

you can remove the “-” in between if you want a continuous number.

1 Like

good job, I was confused for a second there…

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.