Calculation in code to give value in cell

merry_fay

Board Regular
Joined
Oct 28, 2010
Messages
54
I'm probably being really stupid here, but I just can't seem to get a hard-coded value in my output cells based on a calculation in the code.

Simply, I want to do:

Code:
Range("G2:G50").Value ="=RC[-1]/100"

But have the results in G2:G50 as values rather than formulae.

I could put in the formula then copy & paste as values, but surely there's a way to just get values in the cells without the extra step?!

Thanks
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Using the formula is as easy as any other method:
Code:
With Range("G2:G50")
.FormulaR1C1 ="=RC[-1]/100"
.Value2 = .Value2
End with
 
Upvote 0

Forum statistics

Threads
1,213,522
Messages
6,114,112
Members
448,549
Latest member
brianhfield

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