rexrainbow
could CSV2ARRAY be doing something that would cause an odd Sort X issue?
I import my CSV into my Array from an external file and when I sort the files the first item in the list does not sort properly.
I am hoping to just get a very simple 2d array from a CSV but it seems like something is happening where the first item is treated as a Row Name, or a label or something and not just a regular cell like the others...
This list:
A
X
T
G
P
V
Sort X gives this:
G
P
T
V
X
A
but "A" should be first in line...