I have a spreadsheet, and I would like to place an index for each record, ie, every time you fill some data in my column B, an index will be place at same row but in column A.
Assuming that the titles are in row 1, and other information from the line 2, with the formula:
= IF(ISBLANK (B2 ),"", ROW () -1)
If you have nothing on the row filled in column B, no index will be generated, otherwise, I use the row itself (ROW () -1) to generate the index. The -1 is because I'm starting in row 2 ...
Well that serves me well, however, like to have these indexes when using auto-filter.
This information is only for reporting, which makes viewing the contents clearer information analysis, and the formula I posted, does not help in case of auto-filter.
Has anyone experienced a similar situation?
Thanxs
Assuming that the titles are in row 1, and other information from the line 2, with the formula:
= IF(ISBLANK (B2 ),"", ROW () -1)
If you have nothing on the row filled in column B, no index will be generated, otherwise, I use the row itself (ROW () -1) to generate the index. The -1 is because I'm starting in row 2 ...
Well that serves me well, however, like to have these indexes when using auto-filter.
This information is only for reporting, which makes viewing the contents clearer information analysis, and the formula I posted, does not help in case of auto-filter.
Has anyone experienced a similar situation?
Thanxs