Insert specified number of columns between two named columns
I am trying to use VBA to insert a set number of columns between two preexisting and defined ones.
However, it keeps inserting the new columns to the left of the range. I want to insert the columns within the range.
Here's my VBA code to provide some context:
Sub InsertNewColummnbetween()
Range(Range("Data_FirstColumn").Offset(, 1), Range("Data_Net").Offset(,2)).EntireColumn.
Application.DisplayAlerts = False
Dim i As Integer
For i = 1 To Range("Assumptions!B26").Value
Columns(1).INSERT
Next i
Application.DisplayAlerts = True
End Sub
What is wrong with my commands?
microsoft-excel microsoft-excel-2010 vba
add a comment |
I am trying to use VBA to insert a set number of columns between two preexisting and defined ones.
However, it keeps inserting the new columns to the left of the range. I want to insert the columns within the range.
Here's my VBA code to provide some context:
Sub InsertNewColummnbetween()
Range(Range("Data_FirstColumn").Offset(, 1), Range("Data_Net").Offset(,2)).EntireColumn.
Application.DisplayAlerts = False
Dim i As Integer
For i = 1 To Range("Assumptions!B26").Value
Columns(1).INSERT
Next i
Application.DisplayAlerts = True
End Sub
What is wrong with my commands?
microsoft-excel microsoft-excel-2010 vba
add a comment |
I am trying to use VBA to insert a set number of columns between two preexisting and defined ones.
However, it keeps inserting the new columns to the left of the range. I want to insert the columns within the range.
Here's my VBA code to provide some context:
Sub InsertNewColummnbetween()
Range(Range("Data_FirstColumn").Offset(, 1), Range("Data_Net").Offset(,2)).EntireColumn.
Application.DisplayAlerts = False
Dim i As Integer
For i = 1 To Range("Assumptions!B26").Value
Columns(1).INSERT
Next i
Application.DisplayAlerts = True
End Sub
What is wrong with my commands?
microsoft-excel microsoft-excel-2010 vba
I am trying to use VBA to insert a set number of columns between two preexisting and defined ones.
However, it keeps inserting the new columns to the left of the range. I want to insert the columns within the range.
Here's my VBA code to provide some context:
Sub InsertNewColummnbetween()
Range(Range("Data_FirstColumn").Offset(, 1), Range("Data_Net").Offset(,2)).EntireColumn.
Application.DisplayAlerts = False
Dim i As Integer
For i = 1 To Range("Assumptions!B26").Value
Columns(1).INSERT
Next i
Application.DisplayAlerts = True
End Sub
What is wrong with my commands?
microsoft-excel microsoft-excel-2010 vba
microsoft-excel microsoft-excel-2010 vba
edited Jan 13 '14 at 17:56
Excellll
11.1k74162
11.1k74162
asked Jan 13 '14 at 15:12
survivor686survivor686
2525
2525
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Some of this may depend on whether you have a worksheet with data, or if you defined a ListObject.
In your code, I'd avoid the loop, since you only want to insert 2 columns once.
Sub InsertNewColumn()
Dim objSheet as Worksheet
Set objSheet = ActiveWorksheet
With objSheet
.Columns(2).Insert shift:=xlRight
End With
End Sub
add a comment |
The Insert method only allows for the Range to be shifted down or to the right (in this case, to the right.) For this reason, you'll need to specify the range of the Column that you want to end up just to the right of your inserted columns. See this link for more info on Insert.
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
});
}
});
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%2f701065%2finsert-specified-number-of-columns-between-two-named-columns%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Some of this may depend on whether you have a worksheet with data, or if you defined a ListObject.
In your code, I'd avoid the loop, since you only want to insert 2 columns once.
Sub InsertNewColumn()
Dim objSheet as Worksheet
Set objSheet = ActiveWorksheet
With objSheet
.Columns(2).Insert shift:=xlRight
End With
End Sub
add a comment |
Some of this may depend on whether you have a worksheet with data, or if you defined a ListObject.
In your code, I'd avoid the loop, since you only want to insert 2 columns once.
Sub InsertNewColumn()
Dim objSheet as Worksheet
Set objSheet = ActiveWorksheet
With objSheet
.Columns(2).Insert shift:=xlRight
End With
End Sub
add a comment |
Some of this may depend on whether you have a worksheet with data, or if you defined a ListObject.
In your code, I'd avoid the loop, since you only want to insert 2 columns once.
Sub InsertNewColumn()
Dim objSheet as Worksheet
Set objSheet = ActiveWorksheet
With objSheet
.Columns(2).Insert shift:=xlRight
End With
End Sub
Some of this may depend on whether you have a worksheet with data, or if you defined a ListObject.
In your code, I'd avoid the loop, since you only want to insert 2 columns once.
Sub InsertNewColumn()
Dim objSheet as Worksheet
Set objSheet = ActiveWorksheet
With objSheet
.Columns(2).Insert shift:=xlRight
End With
End Sub
answered Jan 13 '14 at 19:41
SamSam
1164
1164
add a comment |
add a comment |
The Insert method only allows for the Range to be shifted down or to the right (in this case, to the right.) For this reason, you'll need to specify the range of the Column that you want to end up just to the right of your inserted columns. See this link for more info on Insert.
add a comment |
The Insert method only allows for the Range to be shifted down or to the right (in this case, to the right.) For this reason, you'll need to specify the range of the Column that you want to end up just to the right of your inserted columns. See this link for more info on Insert.
add a comment |
The Insert method only allows for the Range to be shifted down or to the right (in this case, to the right.) For this reason, you'll need to specify the range of the Column that you want to end up just to the right of your inserted columns. See this link for more info on Insert.
The Insert method only allows for the Range to be shifted down or to the right (in this case, to the right.) For this reason, you'll need to specify the range of the Column that you want to end up just to the right of your inserted columns. See this link for more info on Insert.
answered Jan 13 '14 at 19:49
thunderblasterthunderblaster
1137
1137
add a comment |
add a comment |
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%2f701065%2finsert-specified-number-of-columns-between-two-named-columns%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