Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel 2003 Status Bar Calculations

How can you have the Excel Status Bar simultaneously display Sum, Average,
Max & Min of highlighted data ?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Excel 2003 Status Bar Calculations

Not possible.

Maybe you could create a macro that you could assign to a shortcut key:

Option Explicit
Sub ShowStats()

Dim myRng As Range

Dim myMin As Variant
Dim myMax As Variant
Dim myAve As Variant
Dim mySum As Variant

Set myRng = Selection

With Application
myMin = .Min(myRng)
myMax = .Max(myRng)
myAve = .Average(myRng)
mySum = .Sum(myRng)
End With

If IsError(myMin) Then myMin = "--"
If IsError(myMax) Then myMax = "--"
If IsError(myAve) Then myAve = "--"
If IsError(mySum) Then mySum = "--"

MsgBox "Min: " & myMin & vbLf & _
"Max: " & myMax & vbLf & _
"Ave: " & myAve & vbLf & _
"Sum: " & mySum

End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm


WeyburnWaterOperators wrote:

How can you have the Excel Status Bar simultaneously display Sum, Average,
Max & Min of highlighted data ?


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Excel 2003 Status Bar Calculations

AFAIK you cannot. This is a feature that has been added to Excel 2007.

"WeyburnWaterOperators" wrote:

How can you have the Excel Status Bar simultaneously display Sum, Average,
Max & Min of highlighted data ?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Excel 2003 Status Bar Calculations

All you get is one choice from the options.


Gord Dibben MS Excel MVP

On Fri, 18 Aug 2006 13:38:02 -0700, WeyburnWaterOperators
wrote:

How can you have the Excel Status Bar simultaneously display Sum, Average,
Max & Min of highlighted data ?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cannot Open Webpage With Excel 2003 rdshadden Excel Discussion (Misc queries) 0 May 25th 06 05:59 AM
Data from Excel 2000 Worksheet with external links is not displayed when opened in Excel 2003 Rich Rodberg Links and Linking in Excel 1 October 21st 05 07:53 AM
Microsoft Excel 2003 and Hyperion Retrieve with Excel 2000. Juan Angel Excel Discussion (Misc queries) 1 June 21st 05 09:55 PM
sharing/using/saving Excel 2002 files in Excel 2003 maze2009 Excel Discussion (Misc queries) 0 January 20th 05 07:27 PM
Excel 2000 file when opened in Excel 2003 generates errors? Doug Excel Discussion (Misc queries) 13 December 25th 04 10:20 PM


All times are GMT +1. The time now is 06:34 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"