Copy Excel 2003 "status bar" sum to cell?

  • Thread starter Thread starter Dennis Shannon
  • Start date Start date
D

Dennis Shannon

Is there a way to have Excel automatically update a cell with the sum total
that is displayed in the status bar?

Thanks,
Dennis Shannon
 
Dennis,

The status bar sums the selection, so you could use code like

Range("A1").Value = Application.Sum(Selection)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Perfect!! Thanks for your help Chip!

Dennis
Chip Pearson said:
Dennis,

The status bar sums the selection, so you could use code like

Range("A1").Value = Application.Sum(Selection)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

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