How to fill annual result in excel vba

minmark

New Member
Joined
Jul 18, 2016
Messages
44
=Jan!AI18=Feb!AI18=Mar!AI18...
=Jan!AI19=Feb!AI19=Mar!AI19..
=Jan!AI20=Feb!AI20=Mar!AI20..

<tbody>
</tbody>
Dear Gents,
I have the excel sheet above, and I hope to fill them with VBA. Any body has better solution?
Thanks.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
=Jan!AI18=Feb!AI18=Mar!AI18...
=Jan!AI19=Feb!AI19=Mar!AI19..
=Jan!AI20=Feb!AI20=Mar!AI20..

<tbody>
</tbody>
Dear Gents,
I have the excel sheet above, and I hope to fill them with VBA. Any body has better solution?
Thanks.

While I've looked at this I cannot extract "JanFebMar ..." etc from a string to create a formula to have appropriate 3 letters appear in cells as required.
Against the effort to create the VBA for me it would be easier to build one row of the ....AI18 formulae and drag them down two more rows.

Sorry I can't be more helpful.
 
Upvote 0
How about
Code:
Sub Addformula()

    Dim i As Long
    Dim m As String

    For i = 1 To 12
        m = MonthName(i, True)
        Cells(1, i).Formula = "=" & m & "!AI18"
    Next i
    Range("A1:L20").Filldown

End Sub
As you haven't said where to put the formulas.
This puts them in A1 to L1 & then fills down to row 20
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,497
Members
448,967
Latest member
visheshkotha

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