Hi @GeorgeReimonn -
You can use a calculated field and custom sort. Look at this answer to get an idea.
c_custom_sort
ifelse(
size='S',1,
size='M',2,
size='L',3,
size='XL',4,
0)
or
switch(size, 'S', 1, 'M', 2, 'L', 3, 'XL', 4, 0)
Hi @GeorgeReimonn -
You can use a calculated field and custom sort. Look at this answer to get an idea.
c_custom_sort
ifelse(
size='S',1,
size='M',2,
size='L',3,
size='XL',4,
0)
or
switch(size, 'S', 1, 'M', 2, 'L', 3, 'XL', 4, 0)