Karen has attended:
Access Introduction course
Excel VBA Intro Intermediate course
VBA
How do I insert an equation into VBA
RE: VBA
Thank you for your question.
To enter an equation into a cell you can use two methods.
Range("A4").Formula = "=SUM(A1:A3)"
OR
Range("A4").FormulaR1C1 = "=SUM(R[-3]C:R[-1]C)"
Regards
Laura GB