formula error

R

Raul Sousa

I am having some problems with this code. This is part of a macro.

This part is working fine
ActiveCell.FormulaR1C1 = "=SUM(RC[" & -Sheets.Count & "]:RC[-2])"
But I want to include this part
-(Cells(11, Sheets.Count + 1))
Thus having
ActiveCell.FormulaR1C1 = "=SUM(RC[" & -Sheets.Count & "]:RC[-2])-" &
(Cells(11, Sheets.Count + 1))
This way it does not work. It gives me an error, and I can understand why.

Another problem is that the result of the following code is:
ActiveCell.FormulaR1C1 = "=SUM(" & Sheets(1).Name & ":" &
Sheets(Sheets.Count).Name & "!e11)"
=SUM(tps1:tps26!’e11’)
The expression e11 appears between ‘’. I need to remove this ‘’, but don’t
know who.

Any help is most welcome.
 
B

Bob Phillips

The first one works fine for me as long as that cell contains a number.

Second

ActiveCell.Formula = "=SUM(" & Sheets(1).Name & ":" &
Sheets(Sheets.Count).Name & "!E11)"


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top