Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
At the bottom of the excel worksheet - there is an ability to set up to
display a sum (or average or count or...) of a column. Can Excel be set up to display more than one option at a time? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not in versions upto Excel 2003...
Excel 2007 shows SUM, COUNT and AVERAGE... (not in that order) ------------------------------------- Pl. click ''''Yes'''' if this was helpful... "brian" wrote: At the bottom of the excel worksheet - there is an ability to set up to display a sum (or average or count or...) of a column. Can Excel be set up to display more than one option at a time? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This code placed in Thisworkbook module will give you 4 functions on the
status bar. Private Sub Workbook_SheetActivate(ByVal Sh As Object) 'add the functions to the status bar Application.StatusBar = False If TypeName(Selection) = "Range" Then Workbook_SheetSelectionChange Sh, Selection End If End Sub Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, _ ByVal Target As Range) 'display the functions on the status bar Dim s As String Dim wfn As WorksheetFunction Set wfn = Application.WorksheetFunction On Error GoTo errH: If wfn.Count(Target) < 2 Then s = "" Else s = "Sum=" & wfn.Sum(Target) & " " & _ "Avg=" & wfn.Average(Target) & " " & _ "Min=" & wfn.Min(Target) & " " & _ "Max=" & wfn.Max(Target) & " " & _ "Count=" & wfn.Count(Target) End If errH: Application.StatusBar = s End Sub Gord Dibben MS Excel MVP On Fri, 10 Apr 2009 14:04:11 -0700, brian wrote: At the bottom of the excel worksheet - there is an ability to set up to display a sum (or average or count or...) of a column. Can Excel be set up to display more than one option at a time? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 auto-recovery / auto-save? | Setting up and Configuration of Excel | |||
Auto-populate, Auto-copy or Auto-fill? | Excel Worksheet Functions | |||
Auto Number the Rows of Auto Filter Result | Excel Discussion (Misc queries) | |||
How to AUTO SAVE as opposed to turning on auto recovery: EXCEL | Excel Discussion (Misc queries) | |||
excel links update not working in auto, calculations in auto | Excel Worksheet Functions |