I\'m trying to accomplish something very simple. Actually it used to run normally but when I changed to windows 7 + Office 2013 it just stopped working.
The followin
Use the Range.Formula property with EN-US syntax or Range.FormulaLocal property with your regional locale settings.
Worksheets("Charts").Cells(2, 7).FORMULA = "=" & "23.45" & "/PL!C" & 2
Worksheets("Charts").Cells(2, 7).FORMULALOCAL = "=" & "23,45" & "/PL!C" & 2
VBA is very EN-US-centric as providing translation for all regional settings 'on-the-fly' would create a large overhead.