Forum Discussion
Anonymous
2 years agoNot applicable
column order matrix
Hello everyone, I have created this matrix, I have as column one filed ( with values BtoB,Retail) I would like to dislay first the Retail part and after the BtoB part. Where can I change t...
- 2 years ago
add a new column in your table
Sort = IF( mytabl[filed] = "Retail",1,2)
then sort the mytabl[filed] column by Sort column
Ahmedx
2 years agoSuper User
add a new column in your table
Sort = IF( mytabl[filed] = "Retail",1,2)
then sort the mytabl[filed] column by Sort column