I need a column formula that can add sequential, unique IDs to data like this coming in from a form:
Task Type Task ID
Manual M001
Automated
Manual M002
Manual M003
Manual M004
Automated
Manual M005
Task IDs that aren’t the manual type need sequential numbering within their type (i.e. A001, A002, etc).
Here’s the kicker: It has to be done with a column formula. No “just copy this formula down the row,” because that will break eventually without manual intervention, and business needs mean any solution will go unmaintained for long periods of time. I need to future-proof it as rows are added for years to come.
My initial solution to this was using Auto Number to give me consecutive numbers and creating an automation to move the Manual task type rows to a Manual Task. But I discovered the row number exits the sheet with the row, making the remaining row numbers skip.
I saw the solution below , but it requires entering a row number in its formula, which makes it ineligible to be a column formula.
I appreciate any ideas on how to approach this.