Yes.
Create separate pushbuttons e.g. "Order by material number"
"Order by text" that process an InputScript. In the InputScript use
the "Sort" command to reorder the table values. Since the
"Sort" command assumes rows and columns as numbers, you need to copy
all table variables into numbered variables, then Sort, then copy them back. For
example, instead of
V[mytable.cell.material.4]
you
use
V[mytable.cell.1.4]
|