View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Mona Mona is offline
external usenet poster
 
Posts: 69
Default 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!!