I need to manipulate the string so that my files can ascend in the following order: [1,1,1]
, [1,1,2]
[1,1,3]
....[1,2,1]
and so on. Any insights as to how I can do this?
In Sample.Name I need to organize what's in the square brackets to ascend like so: [1,1,1]
, [1,1,2]
[1,1,3]
...[1,2,1]
etc.
Table See image for table. I tried using the split function and introducing leading zeros and couldn't get it to work. I am new here so ago easy on me please.