Count values in Cells Across

  • Thread starter Thread starter Shari
  • Start date Start date
S

Shari

I want to calculate the values in cell A1 across.

Eg. Cell A1 has a value of 36. I want to calculate the values across
in the 36 non blank cells located in the same worksheet.

Any help appreciated.
Thanks in advance
 
Hi, put this in a module and give it a keyboard shortcut so you ca
activate it, its just a macro recording of selecting cell A2 the
clicking on the sum symbol on the standard toolbar and then draggin
all the cells you want to calculate.

hope this helps
Simon
Sub cellcalculate()
Range("A2").Select
ActiveCell.FormulaR1C1 = "=SUM(R[-1]C:R[-1]C[36])"
Range("A2").Select
End Su
 

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

Back
Top