TRaP
Moderator
Inregistrat: acum 7 ani
Postari: 811
|
|
You have an Excel Table (obtained with CTRL+T or Insert - Table) and you must add an incremental column usually named Cur. No. in English or Nr. Crt. in Romanian.
You want a formula to do it so each time you add a new row it's already numbered.
Use this formula in the first row of your table:
=ROW(A26)-ROW(A$25)
where 25 represents the number of rows above row 1 of the table.
For example if your table has its header in A1, then the formula above becomes:
=ROW(A2)-ROW(A$1)
|
|