I have a file names.txt
with this data:
NAME;AGE;
alberto;22
andrea;51
ana;16
and I want to add a new column N
with the line number of the row:
N;NAME;AGE;
1;alberto;22
2;andrea;51
3;ana;16
I've been looking and what I found was something related with Add sequence
. I tried but I don't know how.
Thank you very much.