Forum Discussion
Queuing Theory Model implementation in PowerBI
- 3 years ago
When you try to implement this in Power Query or DAX you soon realize that neither support the concept of mutable variables, and neither have memory/state storage capacities. You will have to resort to Python or R scripts for anything but the most basic cases. I once worked on a scenario for a bakery (incoming orders through the day versus machine availability and order urgency) and while possible with List.Accumulate and some dirty tricks it was a nightmare to program.
When you try to implement this in Power Query or DAX you soon realize that neither support the concept of mutable variables, and neither have memory/state storage capacities. You will have to resort to Python or R scripts for anything but the most basic cases. I once worked on a scenario for a bakery (incoming orders through the day versus machine availability and order urgency) and while possible with List.Accumulate and some dirty tricks it was a nightmare to program.