Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a way to see the total when a number of cells are highlited? I know
about the status bar on the bottom, but it would be helpful if there were someway to right click or have a balloon show the total. thanks, |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
D
The status bar shows you Average, Count, Count Nums, Min, Max, & Sum. All for the selected cells. Right click in the right end of the status bar and select the function you want for your selected cells. Mike Rogers "D" wrote: Is there a way to see the total when a number of cells are highlited? I know about the status bar on the bottom, but it would be helpful if there were someway to right click or have a balloon show the total. thanks, |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks for the reply, i understand how this works as you explained, but what
I am looking for is a way to highlight cells and have the answer there, instead of checking the status bar. Perhaps a right click and a popup would be fine. "Mike Rogers" wrote: D The status bar shows you Average, Count, Count Nums, Min, Max, & Sum. All for the selected cells. Right click in the right end of the status bar and select the function you want for your selected cells. Mike Rogers "D" wrote: Is there a way to see the total when a number of cells are highlited? I know about the status bar on the bottom, but it would be helpful if there were someway to right click or have a balloon show the total. thanks, |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Copy/paste this code to your worksheet.
Private Sub Worksheet_BeforeRightClick _ (ByVal Target As Range, Cancel As Boolean) Set rng = Selection MsgBox "Sum is: " & WorksheetFunction.Sum(rng) Cancel = True End Sub Select some cells with left button then right-click to see the sum in a message box. Gord Dibben MS Excel MVP On Sun, 27 Jan 2008 08:21:01 -0800, D wrote: Thanks for the reply, i understand how this works as you explained, but what I am looking for is a way to highlight cells and have the answer there, instead of checking the status bar. Perhaps a right click and a popup would be fine. "Mike Rogers" wrote: D The status bar shows you Average, Count, Count Nums, Min, Max, & Sum. All for the selected cells. Right click in the right end of the status bar and select the function you want for your selected cells. Mike Rogers "D" wrote: Is there a way to see the total when a number of cells are highlited? I know about the status bar on the bottom, but it would be helpful if there were someway to right click or have a balloon show the total. thanks, |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks, very nice work, except now my other right click functions are
missing. i.e. cut,paste,etc. Any suggestions? "Gord Dibben" wrote: Copy/paste this code to your worksheet. Private Sub Worksheet_BeforeRightClick _ (ByVal Target As Range, Cancel As Boolean) Set rng = Selection MsgBox "Sum is: " & WorksheetFunction.Sum(rng) Cancel = True End Sub Select some cells with left button then right-click to see the sum in a message box. Gord Dibben MS Excel MVP On Sun, 27 Jan 2008 08:21:01 -0800, D wrote: Thanks for the reply, i understand how this works as you explained, but what I am looking for is a way to highlight cells and have the answer there, instead of checking the status bar. Perhaps a right click and a popup would be fine. "Mike Rogers" wrote: D The status bar shows you Average, Count, Count Nums, Min, Max, & Sum. All for the selected cells. Right click in the right end of the status bar and select the function you want for your selected cells. Mike Rogers "D" wrote: Is there a way to see the total when a number of cells are highlited? I know about the status bar on the bottom, but it would be helpful if there were someway to right click or have a balloon show the total. thanks, |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What...........cake and eat it too<g
Remove the "Cancel = True" which was put in for testing. You will still have to cancel the message box but the regular right-click will then appear. A bit annoying for me. I prefer the Status bar. Gord On Sun, 27 Jan 2008 11:44:00 -0800, D wrote: Thanks, very nice work, except now my other right click functions are missing. i.e. cut,paste,etc. Any suggestions? "Gord Dibben" wrote: Copy/paste this code to your worksheet. Private Sub Worksheet_BeforeRightClick _ (ByVal Target As Range, Cancel As Boolean) Set rng = Selection MsgBox "Sum is: " & WorksheetFunction.Sum(rng) Cancel = True End Sub Select some cells with left button then right-click to see the sum in a message box. Gord Dibben MS Excel MVP On Sun, 27 Jan 2008 08:21:01 -0800, D wrote: Thanks for the reply, i understand how this works as you explained, but what I am looking for is a way to highlight cells and have the answer there, instead of checking the status bar. Perhaps a right click and a popup would be fine. "Mike Rogers" wrote: D The status bar shows you Average, Count, Count Nums, Min, Max, & Sum. All for the selected cells. Right click in the right end of the status bar and select the function you want for your selected cells. Mike Rogers "D" wrote: Is there a way to see the total when a number of cells are highlited? I know about the status bar on the bottom, but it would be helpful if there were someway to right click or have a balloon show the total. thanks, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel: match two cells in one sheet to two cells in another and return a third cells value | Excel Worksheet Functions | |||
display a range of cells editible cells based on matching date | Excel Worksheet Functions | |||
Setting of input cells as blue font and formula cells as black fon | Excel Discussion (Misc queries) | |||
conditional formating cells i Excel based on other cells values | Excel Worksheet Functions | |||
trying to create an (almost) circular formula between cells and data validated cells with lists | Excel Worksheet Functions |