Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have the following statement:
ActiveCell.FormulaR1C1 = "=SUM(R[-4]C:R[-1]C)" I would like to replace the -4 with a count variable that I created: ActiveCell.FormulaR1C1 = "=SUM(R[-Count]C:R[-1]C)" This is not working. The idea is that I want to sum Count number of cells above my active cell. Help please? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ActiveCell.FormulaR1C1 = "=SUM(R[-" & Count & "]C:R[-1]C)"
Tim "Nuraq" wrote in message ... I have the following statement: ActiveCell.FormulaR1C1 = "=SUM(R[-4]C:R[-1]C)" I would like to replace the -4 with a count variable that I created: ActiveCell.FormulaR1C1 = "=SUM(R[-Count]C:R[-1]C)" This is not working. The idea is that I want to sum Count number of cells above my active cell. Help please? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ActiveCell.FormulaR1C1 = "=SUM(R[-" & _
Count & "]C:R[-1]C)" -- Regards, Tom Ogilvy "Nuraq" wrote in message ... I have the following statement: ActiveCell.FormulaR1C1 = "=SUM(R[-4]C:R[-1]C)" I would like to replace the -4 with a count variable that I created: ActiveCell.FormulaR1C1 = "=SUM(R[-Count]C:R[-1]C)" This is not working. The idea is that I want to sum Count number of cells above my active cell. Help please? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formular1c1 | Excel Programming | |||
FormulaR1C1 | Excel Programming | |||
FormulaR1C1 | Excel Programming | |||
FormulaR1C1 | Excel Programming | |||
FormulaR1C1 | Excel Programming |