Forum Discussion
Anonymous
5 years agoNot applicable
iterate through another table
Hi, I have a still to do list of task pr productionsection and these task have different order of handling, so one task needs to be finished first before another one should start. I only wants t...
zzzeagle
5 years agoFrequent Visitor
How about this?
- Duplicate the original task list twice
- In the first, filter where task = A
- In the secon, filter where task != A, then group by ProductSection and use the Min of Task
- Append the two copies of the task list
- Merge the appended lists to the original task list