ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   how do i include an excel formula in a vb string? (https://www.excelbanter.com/excel-programming/440604-how-do-i-include-excel-formula-vbulletin-string.html)

Washballs

how do i include an excel formula in a vb string?
 
Hi,

Am trying to build a Macro which will deposit an excel formala into an excel
field if certain criteria are met. However - when i include a string along
the lines of "=SUM(A1:A4)" the vb scipt will kick it out when it hits the
first parenthesis as if it isn't accepting the character type within the
string.

Any suggestions of how i get round this?

Dennis Tucker

how do i include an excel formula in a vb string?
 
In VBA,

If you want to insert a worksheet function into a cell do this.

Worksheets("Sheet1").Range("B1").Formula = "=SUM(A1:A4)"



"Washballs" wrote in message
...
Hi,

Am trying to build a Macro which will deposit an excel formala into an
excel
field if certain criteria are met. However - when i include a string along
the lines of "=SUM(A1:A4)" the vb scipt will kick it out when it hits the
first parenthesis as if it isn't accepting the character type within the
string.

Any suggestions of how i get round this?



Mike H

how do i include an excel formula in a vb string?
 
Hi,

This should do it

Range("B1").Formula = "=SUM(A1:A4)"

--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Washballs" wrote:

Hi,

Am trying to build a Macro which will deposit an excel formala into an excel
field if certain criteria are met. However - when i include a string along
the lines of "=SUM(A1:A4)" the vb scipt will kick it out when it hits the
first parenthesis as if it isn't accepting the character type within the
string.

Any suggestions of how i get round this?



All times are GMT +1. The time now is 01:43 AM.

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