Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
no problem. You are over thinking this, assuming that you just need a sequential number beginning with B.
The formula text formula would be
"B" & totext([Record ID#])
Now, you will need to think though how you want to start the numbering since you may not want to have the first Customer be Customer # B1.
So one choice is to import say 999 dummy records and hence start off at B1000.
Or else perhaps
"B" & right("0000" & totext([Record ID#]),5)
so that would read B00001.
assuming that you would never have more than 9999 Customers.
The formula text formula would be
"B" & totext([Record ID#])
Now, you will need to think though how you want to start the numbering since you may not want to have the first Customer be Customer # B1.
So one choice is to import say 999 dummy records and hence start off at B1000.
Or else perhaps
"B" & right("0000" & totext([Record ID#]),5)
so that would read B00001.
assuming that you would never have more than 9999 Customers.
- MannyCruz8 years agoQrew Assistant CaptainThank you! This is perfect. As a side note, is there a way to just add in something like +400 so the number would be 427 instead of 27
- QuickBaseCoachD8 years agoQrew CaptainWhile you can certainly do that, I personally don't recommend it. I just feel that its a one time setup to import say 400 dummy records and then immediately delete them. That will take an extra 5 or max 10 minutes.
Then its nice and clean. The [Record ID#] is then essentially the same as the Customer number.