Hi,
If I have a csv file (and have set to CSV view mode), is it possible go through every column and return the longest (and shortest?) length of each column entry?
e.g File consists of:
_______________
29,texts,random
2,text,randomness
2,,randomness
_______________
would return:
2,5,10 (for longest entry length per column)
or
1-2,0-5,6-10 (for shortest and longest entry per column)
Any help appreciated!