Help with formula

Maaylissaa

New Member
Joined
May 29, 2014
Messages
3
In cell E2 i have the alphanumeric value K940001. In cell E3, i'm supposed to get K940002.
So, what formula/ function do i use?

It's like for a column named Student IDs so K will be constant and the numbers just keep increase 94003,94004 and so forth.
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Thank you Ford. With the formula you've provided, i managed to get the numeric value but how do i also get the constant "K" to be included with the number?
 
Upvote 0
hmmm, this part of the formula does that =LEFT(E2,1), the rest gives you the incrementing number..

if it's always K, then use
="K"&--MID(E2,2,99)+1
 
Upvote 0
If the 1st cell (E2?) contains a letter, then this...
=LEFT(E2,1)&--MID(E2,2,99)+1
will include the starting letter (as already pointed out - thanks for the assist jarjar)

what exactly do you have in E2?
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,926
Members
449,479
Latest member
nana abanyin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top