Filling formulas over to the right into a new column added

gaudrco

Board Regular
Joined
Aug 16, 2019
Messages
203
I have a code for a button that creates a new column at theend of a table. After the new column is added, I would like to have theformulas from the previous table column to fill into the new column. The datain the table should be the only formulas filling to the right (table headersshould not fill, just the data from the table). Here is the code for adding the newcolumn:

Code:
With Sheets("Competitor Comparison").ListObjects("CompComparisonTable")
    .ListColumns.Add(.ListColumns.Count + 1).Name = Range("C2")
    .ListColumns(.ListColumns.Count - 1).Range.EntireColumn.Copy
    .ListColumns(.ListColumns.Count).Range.EntireColumn.PasteSpecial Paste:=xlPasteFormats
End With


Please and thank you
 
What I did:
via input box added competitor_16, it was X:X should have been W:W
Selected entire columns R, S & T together and deleted them
via input box added competitor_15 back in.
now adding competitor_16 it's W:W
and adding competitor_17 it's X:X
 
Upvote 0

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
It is working for now. I have a feeling this is going to be one of those things that causes problems down the road. Thank you for this. You saved me a lot of stress.
 
Upvote 0
As expected, the problem returned. Almost immediately actually but I didn't want to take up your time with my one issue because you have helped me immensely. I think I will start a new thread that addresses my issue specifically. You solved this thread of filling the formulas over to the right.
 
Upvote 0
I think I solved it.

The way I solved this issue was by moving the line of code (that fills the column to the right) farther down in my code under the line that has a message box. By doing this, I believe it gave Excel more time to process the adjustment of adding a column. Before, everything was happening so quickly that I don't think excel could process the new column in time to fill the right formula into it.
 
Upvote 0
how about
Code:
    Dim ws As Worksheet, oLo As ListObject

Set ws = Sheets("Competitor Comparison")
With ws
    Set oLo = .ListObjects("CompComparisonTable")
    With oLo
        ws.Range(.ListColumns(.ListColumns.Count - 1).DataBodyRange, .ListColumns(.ListColumns.Count).DataBodyRange).FillRight
    End With
End With

How would you alter this so that the table selection range is the whole databodyrange minus the first column?
 
Upvote 0
Code:
With oLo
    Set rng = .DataBodyRange.Offset(, 1).Resize(, .ListColumns.Count - 1)
End With
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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