To illustrate from another perspective, I have a table where one column contains the field name and another the values (all properly sorted). Now I want to create a transposed table where each of the values goes into a separate row for the header that it belongs to. Tricky part is, that the number of values is variable. I think I have a dimension too much here for a simple mvexpand. A sideways mvexpand would help. So, I'm a bit stuck. header, values (mv field)
a = { a1, a2, a3 }
b = { b1, b2 }
c = { c1, c2, c3, c4 }
target table (each value in separate row/field)
a b c
-------------------
a1 b1 c1
a2 b2 c2
a3 c3
c4
... View more