Hi, looking for a little help on how to improve my next available reference formula to include gaps.
At the moment I have code:
Which would read: AA007 - is there any way I can make it read AA002 without using VBA or a helper column?
The next available ref: AA007 | |
Ref | Heading |
AA001 | Test1 |
AA003 | Test2 |
AA004 | Test3 |
AA006 | Test4 |
At the moment I have code:
Excel Formula:
="The next available ref: AA"&SUM(AGGREGATE(14,6,NOT(ISBLANK(Table[Ref]))*RIGHT(Table[Ref],3)*1,1),1)
Which would read: AA007 - is there any way I can make it read AA002 without using VBA or a helper column?