Error in macro to create a macro that populates columns with a formula.

dmitchell4

New Member
Joined
Aug 30, 2018
Messages
4
I'm trying to create a macro that will add columns with a header, and add a formula to each column.

This is the code I have so far.

Sub addcolumn()
Dim Formulas(1 To 5) As Variant
Dim LastRow As Long
Worksheets("Combined Pivot").Range("R:V").EntireColumn.Insert
Worksheets("Combined Pivot").Range("R2").Formula = "Current Value"
Worksheets("Combined Pivot").Range("S2").Formula = "Excess Value"
Worksheets("Combined Pivot").Range("T2").Formula = "Surplus Value"
Worksheets("Combined Pivot").Range("U2").Formula = "Surplus ND Value"
Worksheets("Combined Pivot").Range("V2").Formula = "Obsolete Value"
With ThisWorkbook.Worksheets("Combined Pivot")
Formulas(1) = "=IFERROR(IF(SUM(L3:N3)<k3,(sum(l3:n3)*i3),k3*i3),0)"
Formulas(2) = "=IFERROR(IF(O3<(K3-(L3+M3+N3)),O3*I3,IF((K3-(L3+M3+N3))>0,(K3-(L3+M3+N3))*I3,0)),0)"
Formulas(3) = "=IFERROR(IF(P3<(K3-(L3+M3+N3+O3)),P3*I3,IF((K3-(L3+M3+N3+O3))>0,(K3-(L3+M3+N3+O3))*I3,0)),0)"
Formulas(4) = "=IFERROR(IF(Q3<(K3-(L3+M3+N3+O3+P3)),Q3*I3,IF((K3-(L3+M3+N3+O3+P3))>0,(K3-(L3+M3+N3+O3+P3))*I3,0)),0)"
Formulas(5) = "=IFERROR(IF(SUM(L3:Q3)=0,K3*I3,0),0)"
End With
LastRow = Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
Range("R3:R" & LastRow).FillDown
End Sub

When debugging, and I get to this line, an error: Subscript out of range.
Code:
With ThisWorkbook.Worksheets("Combined Pivot")

Am I missing some code? I've checked that the spelling is 100% correct, it's not an issue with that. I'm very new to VBA so I'm not quite sure where to proceed from here.</k3,(sum(l3:n3)*i3),k3*i3),0)"
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
I've updated my code and have it all working now. This is what is so far:

Code:
Sub addcolumn()
Dim Formulas(1 To 5) As Variant
Dim LastRow As Long
Worksheets("Combined Pivot").Range("R:V").EntireColumn.Insert
Worksheets("Combined Pivot").Range("R2").Formula = "Current Value"
Worksheets("Combined Pivot").Range("S2").Formula = "Excess Value"
Worksheets("Combined Pivot").Range("T2").Formula = "Surplus Value"
Worksheets("Combined Pivot").Range("U2").Formula = "Surplus ND Value"
Worksheets("Combined Pivot").Range("V2").Formula = "Obsolete Value"
With ActiveWorkbook.Worksheets("Combined Pivot")
Formulas(1) = "=IFERROR(IF(SUM(L3:N3)<K3,(SUM(L3:N3)*I3),K3*I3),0)"
Formulas(2) = "=IFERROR(IF(O3<(K3-(L3+M3+N3)),O3*I3,IF((K3-(L3+M3+N3))>0,(K3-(L3+M3+N3))*I3,0)),0)"
Formulas(3) = "=IFERROR(IF(P3<(K3-(L3+M3+N3+O3)),P3*I3,IF((K3-(L3+M3+N3+O3))>0,(K3-(L3+M3+N3+O3))*I3,0)),0)"
Formulas(4) = "=IFERROR(IF(Q3<(K3-(L3+M3+N3+O3+P3)),Q3*I3,IF((K3-(L3+M3+N3+O3+P3))>0,(K3-(L3+M3+N3+O3+P3))*I3,0)),0)"
Formulas(5) = "=IFERROR(IF(SUM(L3:Q3)=0,K3*I3,0),0)"
.Range("R3:V3").Formula = Formulas
.Range("R:V").NumberFormat = "$#,##0;[Red]($#,##0"
End With
LastRow = Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    Range("R3:V" & LastRow).FillDown
End Sub

My only problem now is that the formula extends too far down. Is there a way I can make it extend only as far as there is data in column Q?
 
Upvote 0
For some reason only part of the code was picked up. Here it is now.

Sub addcolumn()
Dim Formulas(1 To 5) As Variant
Dim LastRow As Long
Worksheets("Combined Pivot").Range("R:V").EntireColumn.Insert
Worksheets("Combined Pivot").Range("R2").Formula = "Current Value"
Worksheets("Combined Pivot").Range("S2").Formula = "Excess Value"
Worksheets("Combined Pivot").Range("T2").Formula = "Surplus Value"
Worksheets("Combined Pivot").Range("U2").Formula = "Surplus ND Value"
Worksheets("Combined Pivot").Range("V2").Formula = "Obsolete Value"
With ActiveWorkbook.Worksheets("Combined Pivot")
Formulas(1) = "=IFERROR(IF(SUM(L3:N3)<K3,(SUM(L3:N3)*I3),K3*I3),0)"
Formulas(2) = "=IFERROR(IF(O3<(K3-(L3+M3+N3)),O3*I3,IF((K3-(L3+M3+N3))>0,(K3-(L3+M3+N3))*I3,0)),0)"
Formulas(3) = "=IFERROR(IF(P3<(K3-(L3+M3+N3+O3)),P3*I3,IF((K3-(L3+M3+N3+O3))>0,(K3-(L3+M3+N3+O3))*I3,0)),0)"
Formulas(4) = "=IFERROR(IF(Q3<(K3-(L3+M3+N3+O3+P3)),Q3*I3,IF((K3-(L3+M3+N3+O3+P3))>0,(K3-(L3+M3+N3+O3+P3))*I3,0)),0)"
Formulas(5) = "=IFERROR(IF(SUM(L3:Q3)=0,K3*I3,0),0)"
.Range("R3:V3").Formula = Formulas
.Range("R:V").NumberFormat = "$#,##0;[Red]($#,##0"
End With
LastRow = Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
Range("R3:V" & LastRow).FillDown
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,907
Messages
6,122,183
Members
449,071
Latest member
cdnMech

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