I'm not sure what you're after, but perhaps the following will shed some
light:
Range("C10").Formula = Application.ConvertFormula("=R[-1]C[-2]", _
xlR1C1, xlA1, , relativeto:=ActiveCell) & _
"+" & Range("F1").Address(False, False)

Signature
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting
www.cpearson.com
(email on the web site)
> When generating a formula for a given cell through VBA, I need to be able
> to
[quoted text clipped - 7 lines]
> exactly this form of coding still functions properly. Can anyone advise
> me?