Flashfill formula from variable column

Guest1337

New Member
Joined
Apr 23, 2024
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi all!

For a dynamic analysis, I need to add a new column to my data set every month. This new column should continue the formula from the column to the left of it, e.g. one column contains the formula: "=EOMONTH(P2;1)", which should then become "EOMONTH(Q2;1)" in the new column to the right of it.

Since there are several analyses on the sheet, I cannot search for the last column, but I search for a term "[1]", next to which a new column is to be inserted and the formula from the column to the left is to be dragged into this new column. This way, I can always search for the same term, as it always moves along.

The data record looks something like this:


[1]
01/01/202401/02/202401/03/2024
111
222
333
444
555

I have the code so far that it finds the term "[1]" and inserts a column to the left of it, but now I can't get the formula there.

Hier der Code:
Dim ow As Worksheet
Dim rng1 As Range
Dim TargetCol As Range
Dim SourceCol As Range

Set ow = ThisWorkbook.Sheets("Overview")
Set rng1 = ow.Cells.Find("[1]", LookIn:=xlValues)

ow.Range(rng1, ow.Cells(ow.Rows.Count, rng1.Column)).EntireColumn.Insert

Set TargetCol = rng1.Offset(0, -1)
Set SourceCol = rng1.Offset(0, -2)

SourceCol.AutoFill Destination:=TargetCol, Type:=xlFillDefault
TargetCol.Formula = "=" & SourceCol.Address

Thanks a lot in advance!
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
I am not clear on what you are trying to achieve. The autofill copies the formula across but then the last line overwrites that.
In terms of just fixing the syntax try this:

VBA Code:
Sub FillFormulaRight()

    Dim ow As Worksheet
    Dim rng1 As Range
    Dim TargetCol As Range
    Dim SourceCol As Range
    
    Set ow = ThisWorkbook.Sheets("Overview")
    Set rng1 = ow.Cells.Find("[1]", LookIn:=xlValues)
    
    rng1.EntireColumn.Insert
    
    Set TargetCol = rng1.Offset(0, -1)
    Set SourceCol = rng1.Offset(0, -2)
    
    SourceCol.AutoFill Destination:=SourceCol.Resize(1, 2), Type:=xlFillDefault
    'TargetCol.Formula = "=" & SourceCol.Address       ' Commented out will overwrite the previous output

End Sub
 
Upvote 0
Sorry for the confusion!

This is what the macro is supposed to do:

[1]
01/01/2024=EOMONTH(O2;1)=EOMONTH(P2;1)
111
222
333
444
555

1. Look for the string [1]
2. Insert a new column to the left of [1], like this:


[1]
01/01/2024=EOMONTH(O2;1)=EOMONTH(P2;1)
111
222
333
444
555

3. Flashfill the formula from the column to the left of the newly inserted column into this newly inserted column, like this:
The numbers 1-5 are placeholders others formulas (VLOOKUPs and SUMIFS, etc.). They are supposed to be flashfilled into this new column.


[1]
01/01/2024=EOMONTH(O2;1)=EOMONTH(P2;1)=EOMONTH(Q2;1)
1111
2222
3333
4444
5555
 
Upvote 0
Then you also want to move (offset) down 1 row from your find position:
VBA Code:
Sub FillFormulaRight()

    Dim ow As Worksheet
    Dim rng1 As Range
    Dim TargetCol As Range
    Dim SourceCol As Range
    
    Set ow = ThisWorkbook.Sheets("Overview")
    Set rng1 = ow.Cells.Find("[1]", LookIn:=xlValues)
    'Set rng1 = ow.Cells.Find("a", LookIn:=xlValues)
    
    rng1.EntireColumn.Insert
    
    Set TargetCol = rng1.Offset(1, -1)
    Set SourceCol = rng1.Offset(1, -2)
    
    SourceCol.AutoFill Destination:=SourceCol.Resize(1, 2), Type:=xlFillDefault

End Sub
 
Upvote 0
See if this does what you are after. The previous post only brings across the heading row.
VBA Code:
Sub FillFormulaRight()

    Dim ow As Worksheet
    Dim rng1 As Range
    Dim TargetCol As Range
    Dim SourceCol As Range
    Dim SourceLastRow As Long
    
    Set ow = ThisWorkbook.Sheets("Overview")
    Set rng1 = ow.Cells.Find("[1]", LookIn:=xlValues)
    
    rng1.EntireColumn.Insert
    
    Set TargetCol = rng1.Offset(1, -1)
    Set SourceCol = rng1.Offset(1, -2)
    SourceLastRow = ow.Cells(Rows.Count, SourceCol.Column).End(xlUp).Row
    Set SourceCol = SourceCol.Resize(SourceLastRow - SourceCol.Row + 1, 1)
    
    SourceCol.AutoFill Destination:=SourceCol.Resize(, 2), Type:=xlFillDefault

End Sub
 
Upvote 0
Solution
That's a progress, thank you! It took the formula for the date from the left to the new column but not the other formulas, see below:
How do I get all of them to the right?

[1]
01/01/2024=EOMONTH(O2;1)=EOMONTH(P2;1)=EOMONTH(Q2;1)
111
222
333
444
555
 
Upvote 0

Forum statistics

Threads
1,215,416
Messages
6,124,772
Members
449,187
Latest member
hermansoa

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