I want to increment a serie using a function

lebrocoli

New Member
Joined
May 16, 2003
Messages
7
I have in a column:

A1: CVL001
A2: CVL002
A3: CVL003

I know I can create CVL004 by clicking on the cell and dragging the cell handle. That is fine.

What I want to do is increment the serie with a function.
That means something like A4 = A3 + 1.

Since it contains text and numbers, Excel does not like that.

Any hint? :rolleyes:
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Code:
=LEFT(A1,3)&TEXT(VALUE(RIGHT(A1,LEN(A1)-FIND(LEFT(A1,3),A1)-2))+1,"000")

or for over 1,000 rows. :wink:
 
Upvote 0

Forum statistics

Threads
1,221,701
Messages
6,161,381
Members
451,700
Latest member
Eccymarge

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