View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ken Hudson Ken Hudson is offline
external usenet poster
 
Posts: 186
Default How to I use nested quotation marks for 'SUMIF' function in Excel.

Hi Glenn,
Not sure if this will help, but here sample code that I used to insert a
formula.

Cells(RowCount, 4) = "=sum(D" & RowAnchor & ":D" & RowCount - 1 & ")"

RowCount and RowAnchor are variables I used.

"Glenn" wrote:

I'm writing a macro, creating a formula for an active cell using "SUMIF". I
need to use cell references that I can control via variables (aka 'cells'
with rownum and colnum notations, or named cell ranges derived from same).
Syntactically VBasic doesn't understand nested quotation marks for named cell
ranges. Additionally using 'Range(Cells..' gives compile errors. Is it
possible to accomplish this? Sample code?? Most grateful for help!!