ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   excel formula and vba (https://www.excelbanter.com/excel-programming/387576-excel-formula-vba.html)

Mona

excel formula and vba
 
I have this formula in cell:
=SUM(C12:L12)/((COUNTIF(C12:L12,"=0"))*24)

I need to be able to "convert" this to vba code.
??
thanks!!

Vergel Adriano

excel formula and vba
 
one way :

Dim dblAnswer As Double
With WorksheetFunction
dblAnswer = .Sum(Range("C12:L12")) / (.CountIf(Range("C12:L12"), "=0")
* 24)
End With


--
Hope that helps.

Vergel Adriano


"Mona" wrote:

I have this formula in cell:
=SUM(C12:L12)/((COUNTIF(C12:L12,"=0"))*24)

I need to be able to "convert" this to vba code.
??
thanks!!


Mona

excel formula and vba
 
thank you Vergel. I think we are very close. This actually works but I
would like the formula in the cell instead of the value

-m

"Vergel Adriano" wrote:

one way :

Dim dblAnswer As Double
With WorksheetFunction
dblAnswer = .Sum(Range("C12:L12")) / (.CountIf(Range("C12:L12"), "=0")
* 24)
End With


--
Hope that helps.

Vergel Adriano


"Mona" wrote:

I have this formula in cell:
=SUM(C12:L12)/((COUNTIF(C12:L12,"=0"))*24)

I need to be able to "convert" this to vba code.
??
thanks!!


Vergel Adriano

excel formula and vba
 
To put the formula in a cell, A1 for example:

Activesheet.Range("A1").Formula =
"=SUM(C12:L12)/((COUNTIF(C12:L12,""=0""))*24)"


--
Hope that helps.

Vergel Adriano


"Mona" wrote:

thank you Vergel. I think we are very close. This actually works but I
would like the formula in the cell instead of the value

-m

"Vergel Adriano" wrote:

one way :

Dim dblAnswer As Double
With WorksheetFunction
dblAnswer = .Sum(Range("C12:L12")) / (.CountIf(Range("C12:L12"), "=0")
* 24)
End With


--
Hope that helps.

Vergel Adriano


"Mona" wrote:

I have this formula in cell:
=SUM(C12:L12)/((COUNTIF(C12:L12,"=0"))*24)

I need to be able to "convert" this to vba code.
??
thanks!!


Mona

excel formula and vba
 
The double quotes ""="" was messing me up. Thank you, this answered my
question!!

"Vergel Adriano" wrote:

To put the formula in a cell, A1 for example:

Activesheet.Range("A1").Formula =
"=SUM(C12:L12)/((COUNTIF(C12:L12,""=0""))*24)"


--
Hope that helps.

Vergel Adriano


"Mona" wrote:

thank you Vergel. I think we are very close. This actually works but I
would like the formula in the cell instead of the value

-m

"Vergel Adriano" wrote:

one way :

Dim dblAnswer As Double
With WorksheetFunction
dblAnswer = .Sum(Range("C12:L12")) / (.CountIf(Range("C12:L12"), "=0")
* 24)
End With


--
Hope that helps.

Vergel Adriano


"Mona" wrote:

I have this formula in cell:
=SUM(C12:L12)/((COUNTIF(C12:L12,"=0"))*24)

I need to be able to "convert" this to vba code.
??
thanks!!



All times are GMT +1. The time now is 12:03 PM.

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