Randomize Value in a Field
Is there a way to randomize the value that will appear in a field. For example, if I want MSH 3:2 to be either "SAD", "MED", "TEN", "BOB", "RAN", how do I code the DTL to just randomly assign a value?
Product version: IRIS 2021.2
$Piece("SAD,MED,TEN,BOB,RAN",",",$r(4)+1)
It's not a bad idea, but the last value has very little chance of appearing
I've tried to user other way, for example, using a GUID, get the checksum and get the module 5
Something like
$Piece("SAD,MED,TEN,BOB,RAN",",",($ZCRC(##class(%SYSTEM.Util).CreateGUID(),0)#5) + 1)
I have best percentage to get a different value.
Hi Kurro,
this could work but the cost in terms of hw resources is high compared to $RANDOM.
Hi Enrico, the problem is that $r(4) returns number between 0 and 3.
If you add 1 you will have numbers 1 2 3 4 but not 5.
You can correct your code with $r(5)+1
Thank you @Enrico Parisi @Kurro Lopez @Ambrogio De Lorenzo
Ops! You are right! 😊
In my defense...it was late 😂