Excel formulas

  • Thread starter Thread starter helpplease
  • Start date Start date
H

helpplease

How do I write a formula that will enter in the next series if it is both
letters and numbers?

For example in A1 I have J111 and I want J112 in C5.

How would I do that?
 
the easy way is to use the row number since A1 contains 111 you simply add 110

="J"&(Row()+110)
 
use this formula in C5
=CONCATENATE(LEFT(A1,1),VALUE(RIGHT(A1,LEN(A1)-1))+1)

-kc
*Click YES if this helps
 
Thanks so much KC! I have been trying to think back to my college Excel
class but that was like forever ago! You're the best!
 
you're welcome!

-kc

helpplease said:
Thanks so much KC! I have been trying to think back to my college Excel
class but that was like forever ago! You're the best!
 

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

Similar Threads

Comparing integer lists 3
Contents 1
Row increments - 7
Greater Than Symbols and calculations 0
how do I create a formula 1
count if formula 4
divide and round up 2
Last Modified By in a cell by user 3

Back
Top