How do I add incremental numbers in the middle of a sequence? Unicorn Meta Zoo #1: Why another...
Tikz positioning above circle exact alignment
Do I need to watch Ant-Man and the Wasp and Captain Marvel before watching Avengers: Endgame?
Implementing 3DES algorithm in Java: is my code secure?
What was Apollo 13's "Little Jolt" after MECO?
Has a Nobel Peace laureate ever been accused of war crimes?
How to open locks without disable device?
Do I need to protect SFP ports and optics from dust/contaminants? If so, how?
How exactly does Hawking radiation decrease the mass of black holes?
How would this chord from "Rocket Man" be analyzed?
How long after the last departure shall the airport stay open for an emergency return?
Is it possible to cast 2x Final Payment while sacrificing just one creature?
What *exactly* is electrical current, voltage, and resistance?
How much of a wave function must reside inside event horizon for it to be consumed by the black hole?
Is there any pythonic way to find average of specific tuple elements in array?
Multiple options vs single option UI
Arriving in Atlanta after US Preclearance in Dublin. Will I go through TSA security in Atlanta to transfer to a connecting flight?
Is there really no use for MD5 anymore?
finding a tangent line to a parabola
What makes accurate emulation of old systems a difficult task?
What is the ongoing value of the Kanban board to the developers as opposed to management
Contradiction proof for inequality of P and NP?
Can you stand up from being prone using Skirmisher outside of your turn?
Was Dennis Ritchie being too modest in this quote about C and Pascal?
A faster way to compute the largest prime factor
How do I add incremental numbers in the middle of a sequence?
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraA good and free local proxy switching program for windows?How to make a split archive for DVD storage where single files are extracted from the set without needing all the DVD'ssum the values in a column and add the sum to the filename of a workbookReinstalling Windows without losing dataHow to have “Modified” ALWAYS available and visible in File Explorer?Installing Windows 10 with Ubuntu in Legacy MBR modeTrouble with INDIRECT formulaExcel: Have X-axis formatted to show ranges of valuesName the first item from a list that is not in another listLast filled row Function behaves strangely based on column it's in
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
MPP1-302-US
- I want to easily make the column goMPP2-302-US
,MPP3-302-US
, etc.
without having to split the data. Is this possible? If so, what is the formula?
windows microsoft-excel-365
New contributor
add a comment |
MPP1-302-US
- I want to easily make the column goMPP2-302-US
,MPP3-302-US
, etc.
without having to split the data. Is this possible? If so, what is the formula?
windows microsoft-excel-365
New contributor
add a comment |
MPP1-302-US
- I want to easily make the column goMPP2-302-US
,MPP3-302-US
, etc.
without having to split the data. Is this possible? If so, what is the formula?
windows microsoft-excel-365
New contributor
MPP1-302-US
- I want to easily make the column goMPP2-302-US
,MPP3-302-US
, etc.
without having to split the data. Is this possible? If so, what is the formula?
windows microsoft-excel-365
windows microsoft-excel-365
New contributor
New contributor
edited 21 hours ago
LotPings
5,4111923
5,4111923
New contributor
asked 21 hours ago
CassybelCassybel
61
61
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
English Excel Forumla (non-tested) :
=CONCATENATE(LEFT(A2,3),NUMBERVALUE(RIGHT(LEFT(A2,LEN(A2)-7),LEN(A2)-10))+1,RIGHT(A2,7))
French (tested) :
=CONCATENER(GAUCHE(A2;3);VALEURNOMBRE(DROITE(GAUCHE(A2;NBCAR(A2)-7);NBCAR(A2)-10))+1;DROITE(A2;7))
Result :
MPP2-302-US
MPP3-302-US
MPP4-302-US
MPP5-302-US
MPP6-302-US
MPP7-302-US
MPP8-302-US
MPP9-302-US
MPP10-302-US
MPP11-302-US
MPP12-302-US
MPP13-302-US
MPP14-302-US
MPP15-302-US
MPP16-302-US
MPP17-302-US
MPP18-302-US
MPP19-302-US
MPP20-302-US
MPP21-302-US
MPP22-302-US
MPP23-302-US
MPP24-302-US
MPP25-302-US
MPP26-302-US
MPP27-302-US
MPP28-302-US
...
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Cassybel is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1429183%2fhow-do-i-add-incremental-numbers-in-the-middle-of-a-sequence%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
English Excel Forumla (non-tested) :
=CONCATENATE(LEFT(A2,3),NUMBERVALUE(RIGHT(LEFT(A2,LEN(A2)-7),LEN(A2)-10))+1,RIGHT(A2,7))
French (tested) :
=CONCATENER(GAUCHE(A2;3);VALEURNOMBRE(DROITE(GAUCHE(A2;NBCAR(A2)-7);NBCAR(A2)-10))+1;DROITE(A2;7))
Result :
MPP2-302-US
MPP3-302-US
MPP4-302-US
MPP5-302-US
MPP6-302-US
MPP7-302-US
MPP8-302-US
MPP9-302-US
MPP10-302-US
MPP11-302-US
MPP12-302-US
MPP13-302-US
MPP14-302-US
MPP15-302-US
MPP16-302-US
MPP17-302-US
MPP18-302-US
MPP19-302-US
MPP20-302-US
MPP21-302-US
MPP22-302-US
MPP23-302-US
MPP24-302-US
MPP25-302-US
MPP26-302-US
MPP27-302-US
MPP28-302-US
...
New contributor
add a comment |
English Excel Forumla (non-tested) :
=CONCATENATE(LEFT(A2,3),NUMBERVALUE(RIGHT(LEFT(A2,LEN(A2)-7),LEN(A2)-10))+1,RIGHT(A2,7))
French (tested) :
=CONCATENER(GAUCHE(A2;3);VALEURNOMBRE(DROITE(GAUCHE(A2;NBCAR(A2)-7);NBCAR(A2)-10))+1;DROITE(A2;7))
Result :
MPP2-302-US
MPP3-302-US
MPP4-302-US
MPP5-302-US
MPP6-302-US
MPP7-302-US
MPP8-302-US
MPP9-302-US
MPP10-302-US
MPP11-302-US
MPP12-302-US
MPP13-302-US
MPP14-302-US
MPP15-302-US
MPP16-302-US
MPP17-302-US
MPP18-302-US
MPP19-302-US
MPP20-302-US
MPP21-302-US
MPP22-302-US
MPP23-302-US
MPP24-302-US
MPP25-302-US
MPP26-302-US
MPP27-302-US
MPP28-302-US
...
New contributor
add a comment |
English Excel Forumla (non-tested) :
=CONCATENATE(LEFT(A2,3),NUMBERVALUE(RIGHT(LEFT(A2,LEN(A2)-7),LEN(A2)-10))+1,RIGHT(A2,7))
French (tested) :
=CONCATENER(GAUCHE(A2;3);VALEURNOMBRE(DROITE(GAUCHE(A2;NBCAR(A2)-7);NBCAR(A2)-10))+1;DROITE(A2;7))
Result :
MPP2-302-US
MPP3-302-US
MPP4-302-US
MPP5-302-US
MPP6-302-US
MPP7-302-US
MPP8-302-US
MPP9-302-US
MPP10-302-US
MPP11-302-US
MPP12-302-US
MPP13-302-US
MPP14-302-US
MPP15-302-US
MPP16-302-US
MPP17-302-US
MPP18-302-US
MPP19-302-US
MPP20-302-US
MPP21-302-US
MPP22-302-US
MPP23-302-US
MPP24-302-US
MPP25-302-US
MPP26-302-US
MPP27-302-US
MPP28-302-US
...
New contributor
English Excel Forumla (non-tested) :
=CONCATENATE(LEFT(A2,3),NUMBERVALUE(RIGHT(LEFT(A2,LEN(A2)-7),LEN(A2)-10))+1,RIGHT(A2,7))
French (tested) :
=CONCATENER(GAUCHE(A2;3);VALEURNOMBRE(DROITE(GAUCHE(A2;NBCAR(A2)-7);NBCAR(A2)-10))+1;DROITE(A2;7))
Result :
MPP2-302-US
MPP3-302-US
MPP4-302-US
MPP5-302-US
MPP6-302-US
MPP7-302-US
MPP8-302-US
MPP9-302-US
MPP10-302-US
MPP11-302-US
MPP12-302-US
MPP13-302-US
MPP14-302-US
MPP15-302-US
MPP16-302-US
MPP17-302-US
MPP18-302-US
MPP19-302-US
MPP20-302-US
MPP21-302-US
MPP22-302-US
MPP23-302-US
MPP24-302-US
MPP25-302-US
MPP26-302-US
MPP27-302-US
MPP28-302-US
...
New contributor
New contributor
answered 18 hours ago
ClementAClementA
262
262
New contributor
New contributor
add a comment |
add a comment |
Cassybel is a new contributor. Be nice, and check out our Code of Conduct.
Cassybel is a new contributor. Be nice, and check out our Code of Conduct.
Cassybel is a new contributor. Be nice, and check out our Code of Conduct.
Cassybel is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1429183%2fhow-do-i-add-incremental-numbers-in-the-middle-of-a-sequence%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown