insert formula - vba

lezawang

Well-known Member
Joined
Mar 27, 2016
Messages
1,805
Office Version
  1. 2016
Platform
  1. Windows
Hi
The code below is not giving me any error message but it does not name the range a1:a10 to myrange and the sum function does not work? Any help would be very much appreciated. Thank you.
Code:
Sub insert_formula()
    Range("a1:a10").Name = "myrange"
    Cells(11, 1).Formula = "=sum(myrange)"
End Sub
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Works for me.
What do you have in cells A1 to A10.
Did you check if you have a name "myrange"?
 
Upvote 0
Thanks for your reply. I made a mistake. I first inserted the formula in a10 and then in a11 so the same formula inserted twice. i had a10 and a11 = 0 , I know the mistake now thanks for your help but that lead me to another question please, why a10 and a11 is 0 ? thank you very much.

r2.JPG

r1.JPG
 
Upvote 0

Forum statistics

Threads
1,213,567
Messages
6,114,342
Members
448,570
Latest member
rik81h

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top