VBA Increasing formula by 1 each time it is added

silentcarl

New Member
Joined
Feb 29, 2024
Messages
8
Office Version
  1. 2010
Platform
  1. Windows
I am trying to use a macro to place this formula in cells B3, B9, B(n+6)... until the last row while having the cell references as I need them:
Excel Formula:
=CONCATENATE(RawData!A2," ",RawData!B2)

So far I have:
VBA Code:
Sub test()
Dim UsedRows As Integer

UsedRows = Worksheets("RawData").UsedRange.Rows.Count

Dim i As Long
For i = 3 To UsedRows Step 6

With Cells(i, 2)

.Formula = "=CONCATENATE(RawData!A" & i & "," & " " & ",RawData!B" & i & ")"


    End With
    
Next i

End Sub

This copies down every 6 rows as I want, but the cell references are the same as the row number. ie A3,A9,A15...

I want them to be sequential ( A2,A3,A4,A5,etc.)
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
VBA Code:
.Formula = "=CONCATENATE(RawData!A" & 1 + (i + 3) / 6 & "," & " " & ",RawData!B" & 1 + (i + 3) / 6 & ")"

^this works for what I'm trying to do.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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