Serializing Data in Excel Column

Samael2021

New Member
Joined
Jun 21, 2021
Messages
22
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
Hello Dear,
Could you please help me with this? I have many data in a column of excel. I want to serialize them by formula or vba.
Column A data can be any random number starting with "CARD". I want those random number into a serialize form as shown in below. Thanks you so much.


COLUMN A COLUMN A (OUTPUT)

CARD001 CARD001
CARD005 CARD002
CARD009 CARD003
CARD020 CARD004
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Book1
AB
1CARD001CARD001
2CARD005CARD002
3CARD009CARD003
4CARD020CARD004
Sheet2
Cell Formulas
RangeFormula
B1:B4B1="CARD"&TEXT(ROW(A1:A4),"000")
Dynamic array formulas.
 
Upvote 0
Solution
You don't need to do anything special. Just write CARD001 to any cell and pull it down. Excel will recognize number series.
 
Upvote 0

Forum statistics

Threads
1,214,929
Messages
6,122,314
Members
449,081
Latest member
tanurai

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