I have a database of products that I’m trying to show in alphabetical order. I tried to sort the data by product name, but it hasn’t work, so I’m looking to figure out how else to do it.
Actually. Just realized it was indeed sorting it, but it was doing it left to right. I assumed it would have sorted it from the top to bottom, left to right.
See if you can apply some logic at the cell level to perform a matrix transpose, since that is essentially what you want relative to what you have. Another solution worth exploring would be to use 4 repeating groups that reference a container repeating group and index every 4n+i, where (n) is the row and (i) is the column.