SMALL HELP WITH SERIES

S

Stephen

Thank you for looking at this post, here's what I need
help with:

I am trying to create a worksheet that auto-updates a
series that is somewhat non numerical but not in adjacent
cells.

For example, lets say you entered in cell A1

2-15

and if you dragged the black cross either horizontally or
vertically, it would advance the series (2-16, 2-17...
and so on, although it is not a true number.)

Now, if I wanted to do this in cell A20 only, I can not
simply do "=A1+1", because its not numerical.

Is there a way to advance the series like that? I know
there must be some sort of syntax but HELP is very
ambiguous about this.

Your help will be greatly appreciated.

-Stephen
 
T

Thomas

Try
=LEFT(A1,2)& MID(A1,FIND("-",A1)+1,15)+1

this assumes your first digit before the - will also be less then 10
 
T

Thomas

If the numbers before the "-" will vary use:
=LEFT(A1,FIND("-",A1))&MID(A1,FIND("-",A1)+1,15)+1
 

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

Top