Formula with dynamic archive name as a variant

Dj Jack

New Member
Joined
Jul 11, 2018
Messages
9
Hi Again... good nights..

I try to adjust this formula to somthing that works... i have something like this..

Range("D18").Select
ActiveCell.FormulaR1C1 = "=AVERAGE('[Calculadora Tecnica JULIO.xlsm]IN Y CS'!R18C4:R18C37)"
Range("D18").Copy
Range("D18:AL18").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False

The Bold section have a formula that refers another book... how i can do dynamic this name i try something like this but doesen't work...

Dim Mesanterior As String
Dim Miarchivoanterior As String

Mesanterior = UCase(MonthName(Month(Date) - 1))
Miarchivoanterior = "F:\Calculadora Tecnica\Calculadora Tecnica" & " " & Mesanterior & ".xlsm"


Range("D18").Select
ActiveCell.FormulaR1C1 = "=AVERAGE('[how insert the variant miarchivoanterior in this place¡?]IN Y CS'!R9C4:R9C37)"


Greetings!!
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Hi,

You should try to use the full path ...starting the root directory such C:\ ...

Hope this will help
 
Upvote 0
Hi,

You should try to use the full path ...starting the root directory such C:\ ...

Hope this will help


Hi James, thanks for the fast answer but not work...

I need to tell vba that the formula contains a dynamic file name that changes month by month

Dim Mesanterior As String
Dim Miarchivoanterior As String

Mesanterior = UCase(MonthName(Month(Date) - 1))
Miarchivoanterior = "F:\Calculadora Tecnica\Calculadora Tecnica" & " " & Mesanterior & ".xlsm"


Range("D18").Select
ActiveCell.FormulaR1C1 = "=AVERAGE('[Mesanterior]IN Y CS'!R9C4:R9C37)"
 
Upvote 0
Hi,

Let me share with a few tests to peform ....

1. Before using a macro .. make sure your formula works on its own ...

2. Once the calculation is correct, you can then decide to move on to the macro and decide if the macro should get the cell to display the final result OR the formula which calcultates the final result ...

Hope this will help
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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