Insert specified number of columns between two named columns












2















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?










share|improve this question





























    2















    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?










    share|improve this question



























      2












      2








      2








      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 13 '14 at 17:56









      Excellll

      11.1k74162




      11.1k74162










      asked Jan 13 '14 at 15:12









      survivor686survivor686

      2525




      2525






















          2 Answers
          2






          active

          oldest

          votes


















          0














          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





          share|improve this answer































            0














            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.






            share|improve this answer























              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
              });


              }
              });














              draft saved

              draft discarded


















              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









              0














              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





              share|improve this answer




























                0














                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





                share|improve this answer


























                  0












                  0








                  0







                  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





                  share|improve this answer













                  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






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 13 '14 at 19:41









                  SamSam

                  1164




                  1164

























                      0














                      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.






                      share|improve this answer




























                        0














                        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.






                        share|improve this answer


























                          0












                          0








                          0







                          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.






                          share|improve this answer













                          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.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jan 13 '14 at 19:49









                          thunderblasterthunderblaster

                          1137




                          1137






























                              draft saved

                              draft discarded




















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                              Mangá

                               ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕