PC Review


Reply
Thread Tools Rate Thread

2007 Status Bar in Excel 2003

 
 
Brennan
Guest
Posts: n/a
 
      4th Feb 2008
I have Excel 2007 at home and like the new functionality in the status bar
where it will show sum, count, average etc. At work I only have 2003. Is
there a way to create that functionality in 2003 using VBA? I appreciate the
help.

B
 
Reply With Quote
 
 
 
 
Niek Otten
Guest
Posts: n/a
 
      4th Feb 2008
Right-click in the area where the Sum etc should be. You get several options.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Brennan" <(E-Mail Removed)> wrote in message news:4E6E6017-02DC-4024-9366-(E-Mail Removed)...
|I have Excel 2007 at home and like the new functionality in the status bar
| where it will show sum, count, average etc. At work I only have 2003. Is
| there a way to create that functionality in 2003 using VBA? I appreciate the
| help.
|
| B


 
Reply With Quote
 
Brennan
Guest
Posts: n/a
 
      4th Feb 2008
HI Niek,

Thanks for your reply. I would like for the status bar to show multiple
categories, not just the one category. So for example, I would like to
highlight some cells and see the count, sum and average, not just the sum.
Please let me know if there is a way to do this. Thanks

B

"Niek Otten" wrote:

> Right-click in the area where the Sum etc should be. You get several options.
>
> --
> Kind regards,
>
> Niek Otten
> Microsoft MVP - Excel
>
> "Brennan" <(E-Mail Removed)> wrote in message news:4E6E6017-02DC-4024-9366-(E-Mail Removed)...
> |I have Excel 2007 at home and like the new functionality in the status bar
> | where it will show sum, count, average etc. At work I only have 2003. Is
> | there a way to create that functionality in 2003 using VBA? I appreciate the
> | help.
> |
> | B
>
>
>

 
Reply With Quote
 
Niek Otten
Guest
Posts: n/a
 
      4th Feb 2008
I don't think that can be done without VBA programming

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Brennan" <(E-Mail Removed)> wrote in message news:6C085844-66DF-4B5A-BB5D-(E-Mail Removed)...
| HI Niek,
|
| Thanks for your reply. I would like for the status bar to show multiple
| categories, not just the one category. So for example, I would like to
| highlight some cells and see the count, sum and average, not just the sum.
| Please let me know if there is a way to do this. Thanks
|
| B
|
| "Niek Otten" wrote:
|
| > Right-click in the area where the Sum etc should be. You get several options.
| >
| > --
| > Kind regards,
| >
| > Niek Otten
| > Microsoft MVP - Excel
| >
| > "Brennan" <(E-Mail Removed)> wrote in message news:4E6E6017-02DC-4024-9366-(E-Mail Removed)...
| > |I have Excel 2007 at home and like the new functionality in the status bar
| > | where it will show sum, count, average etc. At work I only have 2003. Is
| > | there a way to create that functionality in 2003 using VBA? I appreciate the
| > | help.
| > |
| > | B
| >
| >
| >


 
Reply With Quote
 
Brennan
Guest
Posts: n/a
 
      4th Feb 2008
Thanks Niek,

Any chance you know the VBA code for this? I am fairly comfortable with
VBA. Thanks

B
 
Reply With Quote
 
Niek Otten
Guest
Posts: n/a
 
      4th Feb 2008
<Any chance you know the VBA code for this?>

No, Sorry!


"Brennan" <(E-Mail Removed)> wrote in message news:CAEA61F6-D921-4ACF-BD3C-(E-Mail Removed)...
| Thanks Niek,
|
| Any chance you know the VBA code for this? I am fairly comfortable with
| VBA. Thanks
|
| B


 
Reply With Quote
 
Jim Rech
Guest
Posts: n/a
 
      4th Feb 2008
>>I don't think that can be done without VBA programming

I doubt even with VBA, Niek<g>.

--
Jim
"Niek Otten" <(E-Mail Removed)> wrote in message
news:eTnj$(E-Mail Removed)...
|I don't think that can be done without VBA programming
|
| --
| Kind regards,
|
| Niek Otten
| Microsoft MVP - Excel
|
| "Brennan" <(E-Mail Removed)> wrote in message
news:6C085844-66DF-4B5A-BB5D-(E-Mail Removed)...
|| HI Niek,
||
|| Thanks for your reply. I would like for the status bar to show multiple
|| categories, not just the one category. So for example, I would like to
|| highlight some cells and see the count, sum and average, not just the
sum.
|| Please let me know if there is a way to do this. Thanks
||
|| B
||
|| "Niek Otten" wrote:
||
|| > Right-click in the area where the Sum etc should be. You get several
options.
|| >
|| > --
|| > Kind regards,
|| >
|| > Niek Otten
|| > Microsoft MVP - Excel
|| >
|| > "Brennan" <(E-Mail Removed)> wrote in message
news:4E6E6017-02DC-4024-9366-(E-Mail Removed)...
|| > |I have Excel 2007 at home and like the new functionality in the status
bar
|| > | where it will show sum, count, average etc. At work I only have
2003. Is
|| > | there a way to create that functionality in 2003 using VBA? I
appreciate the
|| > | help.
|| > |
|| > | B
|| >
|| >
|| >
|
|


 
Reply With Quote
 
Peter T
Guest
Posts: n/a
 
      5th Feb 2008
Try this in the ThisWorkbook. module (rt-click icon next to File, view code)

Private Sub Workbook_SheetActivate(ByVal Sh As Object)
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)
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) ' etc
End If
errH:
Application.StatusBar = s

End Sub

If some non-range object is selected the statusbar will not be cancelled.
If it does what you want you could put it in a class module that traps
application level events in an addin or your Personal.

Regards,
Peter T

"Brennan" <(E-Mail Removed)> wrote in message
news:CAEA61F6-D921-4ACF-BD3C-(E-Mail Removed)...
> Thanks Niek,
>
> Any chance you know the VBA code for this? I am fairly comfortable with
> VBA. Thanks
>
> B



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I get the status bar to show in Excel 2007? LynetteB Microsoft Excel Misc 6 30th Mar 2009 01:05 AM
Status Bar disappears in Excel 2007 Schizoid Man Microsoft Excel Discussion 1 24th Oct 2008 03:34 AM
Hiding status bar in Excel 2007 =?Utf-8?B?Sm9obm55IEogV29vZGhvdXNl?= Microsoft Excel Misc 3 14th Oct 2007 09:43 PM
How can I display status bar value in Excel 2007 =?Utf-8?B?QWwgQg==?= Microsoft Excel Misc 1 11th Mar 2007 12:35 AM
My Excel 2007 doesn't have a status bar, pls show me how? =?Utf-8?B?SW5EaXN0cmVzc1dpdGhFeGNlbA==?= Microsoft Excel Misc 1 17th Aug 2006 09:09 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:48 PM.