Morning all,
So I have a question about the ROW() function.
I'm using it with a combination of LEFT to create a unique REF in column A; for example, ABCD01.
It's made up of the first 4 characters of a document name and the ROW.
My question is: when the document changes down the list how can I get the ROW to reset to 1, so rather than being CDEF12 it would be CDEF01.
Current Code:
It works great but I've never managed to figure out a way to restart at 1 in the same formula.
Hopefully, this makes sense.
So I have a question about the ROW() function.
I'm using it with a combination of LEFT to create a unique REF in column A; for example, ABCD01.
It's made up of the first 4 characters of a document name and the ROW.
My question is: when the document changes down the list how can I get the ROW to reset to 1, so rather than being CDEF12 it would be CDEF01.
Current Code:
Code:
=IF(ROW()-3<10,CONCATENATE(UPPER(LEFT([@[Functional Area
(BRE-130 Link)]],4)),"0",ROW()-3),CONCATENATE(UPPER(LEFT([@[Functional Area
(BRE-130 Link)]],4)),ROW()-3))
It works great but I've never managed to figure out a way to restart at 1 in the same formula.
Hopefully, this makes sense.