ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   macro converts formula using imbeded literals (https://www.excelbanter.com/excel-programming/361967-macro-converts-formula-using-imbeded-literals.html)

jmealhouse

macro converts formula using imbeded literals
 
I created a macro. In the macro was a formula. When I run the formula it puts
single quotes around the cell position.

ActiveCell.FormulaR1C1 = "= (g2*(h2/100)*I2)/360"

In the Cell -- See g2-h2-I2
=('g2'*('h2'/100)*'I2')/360

What gives?

James

Chip Pearson

macro converts formula using imbeded literals
 
Don't use the FormulaR1C1 property. Use Formula instead.

ActiveCell.Formula = "= (g2*(h2/100)*I2)/360"




"jmealhouse" wrote in
message
...
I created a macro. In the macro was a formula. When I run the
formula it puts
single quotes around the cell position.

ActiveCell.FormulaR1C1 = "= (g2*(h2/100)*I2)/360"

In the Cell -- See g2-h2-I2
=('g2'*('h2'/100)*'I2')/360

What gives?

James




chijanzen

macro converts formula using imbeded literals
 
Hi jmealhouse

try, Formula

ActiveCell.Formula = "= (g2*(h2/100)*I2)/360"

--
天行健,君*以自強不息
地勢坤,君*以厚德載物

http://www.vba.com.tw/plog/


"jmealhouse" wrote:

I created a macro. In the macro was a formula. When I run the formula it puts
single quotes around the cell position.

ActiveCell.FormulaR1C1 = "= (g2*(h2/100)*I2)/360"

In the Cell -- See g2-h2-I2
=('g2'*('h2'/100)*'I2')/360

What gives?

James


jmealhouse

macro converts formula using imbeded literals
 
That worked!
Thank You

James

"chijanzen" wrote:

Hi jmealhouse

try, Formula

ActiveCell.Formula = "= (g2*(h2/100)*I2)/360"

--
天行健,君*以自強不息
地勢坤,君*以厚德載物

http://www.vba.com.tw/plog/


"jmealhouse" wrote:

I created a macro. In the macro was a formula. When I run the formula it puts
single quotes around the cell position.

ActiveCell.FormulaR1C1 = "= (g2*(h2/100)*I2)/360"

In the Cell -- See g2-h2-I2
=('g2'*('h2'/100)*'I2')/360

What gives?

James



All times are GMT +1. The time now is 05:36 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com