Autofill Series

  • Thread starter Thread starter Rob Sykes
  • Start date Start date
R

Rob Sykes

Hello i'm working on a sheet where we've assigned receipt
books to canvassers. What I want to do is put the receipt
numbers for the first book then have it complete the
series. The first value in the series is PS 000001-000050,
any help you guys/girls could add would be great.

Thanks in advance
 
Hi
not really sure what you're trying to achieve. How dow you
want to fill the series?
 
The Value in the first Cell will be PS 000001-000050,
Second would be PS 000051-000100 etc all the way down the
column.
 
Hi
try the following formula in A1:
="PS " & TEXT(ROW(),"000000")& "-" & TEXT(ROW()
*50,"000000")

and copy this formula down for all rows
 
Hi
sorry make this
="PS " & TEXT((ROW()-1)*50 + 1,"000000")& "-" & TEXT(ROW()
*50,"000000")
 
Make the formula

="PS " & TEXT((ROW()-1)*50+1,"000000")& "-" & TEXT(ROW()*50,"000000")

and it will work a bit better ;-)

HTH,
Bernie
MS Excel MVP
 
Hi
then you probably have inserted the formula starting in
row3. Try the following change
="PS " & TEXT((ROW(1:1)-1)*50 + 1,"000000")& "-" & TEXT(ROW
(1:1)*50,"000000")
 
No...but it in J2 the second row in the column under the
heading. the second one you gave me just returned
a '#name?' value.
 
Then you probably did miss a quotation mark when you copied it unless you
use a non English version?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top