Reputation: 1
I am try generate auto serial no. starting from 500 (like ABC 500, ABC 501 and so on) by using Array Formula in my google sheets.
Is there any solution ??
Upvotes: 0
Views: 240
Reputation: 1
try:
=ARRAYFORMULA("ABC"&ROW(A500:A1000))
or bind it to just valid non-empty rows:
=ARRAYFORMULA(IF(B2:B<>"";;"ABC"&ROW(A500:A1000)))
Upvotes: 1
Reputation: 1574
=ARRAYFORMULA("ABC "&SEQUENCE(3,1,500,1))
will do the trick. Read up on the specifics of the functions in the documentation.
Upvotes: 1