Jump to content

Random number from value list?


This topic is 2503 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I have a table with the field Producer Number. This table has about 10 records each with a different producer number 1-10 and these numbers change daily. Some days it will have numbers 4, 5, 6, 7. Other days it will have 1, 2, 5, 6. Etc.

I'm trying find a way to to set a field when entering a layout to a random number within this field so when 4, 5, 6, 7 numbers are entered in the field a random number from that set will be selected and entered into the field.

Further, is there a way to use this field or value set from my table and enter these numbers sequentially?

Please let me know if I wasn't specific enough.

 

Thank you!

Link to comment
Share on other sites

12 minutes ago, Matthew R White said:

when 4, 5, 6, 7 numbers are entered in the field a random number from that set will be selected

If you define a value list based on the Producer Number field, you can use =

Let ( [
values = ValueListItems ( "" ; "ProducerNumbers" ) ; 
n = ValueCount ( values ) 
] ;   
GetValue ( values ; Int ( Random * n ) + 1 )
)

to select a random value from the value list.

 

21 minutes ago, Matthew R White said:

Further, is there a way to use this field or value set from my table and enter these numbers sequentially?

I don't understand this. If the values in the field change daily, then what constitutes a "sequence"?

 

Link to comment
Share on other sites

This topic is 2503 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.