A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
To create a numeric sequence in Excel that ends with a letter, you can use a combination of the fill handle and a formula. Here’s how you can do it:
- Start with the first entry: In the first cell, enter your starting value, for example,
890000A. - Create a formula for the next entry: In the second cell, enter the formula to increment the number while keeping the letter at the end. You can use the following formula:
=TEXT(LEFT(A1, LEN(A1)-1) + 1, "000000") & "A"This formula takes the numeric part of the previous cell, increments it by 1, and then appends the letter "A" at the end. - Drag the fill handle: Click on the bottom-right corner of the cell with the formula (the fill handle) and drag it down to fill the cells below with the incremented values.
This will generate a list like 890000A, 890001A, 890002A, and so on.
Make sure to adjust the formula if you want to change the letter at the end or if you want to start from a different number.
References: