Jump to content

Recommended Posts

Posted

sorry for the trivial question: I have a system in which the source generates three different entities (A, B, C). I want you to generate a precise number of each one. For example, first 100 of type A, then 200 of type b and finally 300 of type c. So they do not have to be generated randomly. how can I do?

Thanks in advance

Carlo

Posted

An Arrivals table with 3 entries would cover your request:

Time    EntityType    Quantity

10.0     TypeA             100

20.0     TypeB              200

30.0     TypeC              300

×
×
  • Create New...