Hi, i sort a text block and i thought it would sort the day which is in the axes chronological order. However it is very random. Any idea how chronological can be kept?
Thanks, Maik
Hi Maik, it appears you've sorted on the second column containing the day of the week, correct? In which case it's sorted it alphabetically since it's a string. If you want to sort it chronologically, if that's the standard Day entity on the axis then it should sort correctly by default, otherwise if it's a custom entity you either want the code in the format YYYYMMDD so that you can sort it as a string and it'll sort correctly, or you'll need to add the same entity as a block and use an algorithm to convert it to that format so that you can sort on that block.