Forum Discussion
richmd
Aug 18, 2023Copper Contributor
SEQUENCE Function inside Excel Table
When I enter the SEQUENCE function within an Excel table I get the #SPILL! error. The specific usage is as follows: =SEQUENCE(COUNTA([Status])) where Status is a defined field name in the table. When...
richmd
Aug 18, 2023Copper Contributor
Thanks for the reply Patrick. I'm just trying to create a auto-generated number for each record in my table. I know there are multiple ways to accomplish this but until now SEQUENCE has always worked well for me.
SergeiBaklan
Aug 18, 2023Diamond Contributor
In addition to Patrick2788 that could be
=ROW()-ROW(Table1[[#Headers],[Id]])
However, such index is not anchored to related rows. As soon as you sort the table, add or remove row in the middle, each concrete index will be related to another row.