Writing own formula
Nick, I added the "Option Explicit", declared all the variables and now I
have the error in RC. And now? Any ideas?
Thanks!
Nick, how can I use the Option Explicit mode?
"NickHK" wrote:
It would seem that you are not using "Option Explicit" in all you modules.
Add that, then see the error concerning RC.
NickHK
"dspilberg" wrote in message
...
My objective is to create a file of consolidation of identical files, but
with different values in the cells. So I have to maintain the formulas and
sum the values.
The problem is that I created my own formula as the code bellow (onglet is
the sheetname) and Excel writes in the cells the formula itself, it does
not
calculate it as I expected. For exemple, it returns:
+Plan1!+Plan2! and not the value of the sum of the 2 cells.
What should I do???
Thanks in advance.
Daniel (Brazil)
Dim formula As Variant
Sheets("Input").Select
For a = 2 To 3
If Cells(a, 1).Value = True Then
Onglet = Cells(a, 3).Value
formula = formula & "+" & Onglet & "!" & RC
End If
Next a
Sheets("Conso").Select
Cells.Select
Selection.SpecialCells(xlCellTypeConstants, 23).Select
Selection.FormulaR1C1 = formula
End Sub
|