Hi,

I'm not quite clear what you're asking. If all you want to do is have vba enter a formula for you then

Range("your_range") = "=B4*B3"
If you want your range to be the result of B4 * B3 then

Range("Your_range") = Range("A4") * Range("B3")
Regards