Hello all -
I need to generate a completely random invoice number in an app, and I've found a formula that works:
Right(Text(Rand()*10),3)&"-"&Right(Text(Rand()*10),3)
However, I'm not sure how to keep the number from recalculating every time my form is submitted. Once this number is generated it needs to remain associated with its item, and never change.
Any ideas would be greatly appreciated. Thanks!