Long time Lurker reporting in! My issue is I’m not sure how to increment an Item no. It follows this format : LK0001 the row below it will be LK0002, below that LK0003 and so on I’m not sure how to automate this process, as you can tell I’m fairly new to google spreadsheets Sorry if it’s already answered , I just can’t seem to find it! Thanks!
Weej
First of all, I would suggest using the following ID build-up:
This way characters (
LK) can be separated from integers (1000). Otherwise you would face the problem, that if you increaseLK0009by1it becomesLK00010and notLK0010ID’s need to be “hard coded”, meaning
=CONCATor=A1+1or=MAX(A:A)+1are not allowed.Either go by typing LK+max. number and use the ID as a text or go for the integers and use
CONCATwhen needed.If you chose to go with the integers, you can easily increment them by doing this:

and then dragging it downwards, yielding:

I’ve prepared an example for you: How do I increment a string value in Google Spreadsheet?