Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do I Roll over a range of cells and have their average show as a "pop up"?
|
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This will give you an average for each and every selection you make. I'm
guessing it's going to be obnoxious if someone is changing any data. Right click on the worksheet to View source. Paste this in Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Not IsEmpty(Target) Then MsgBox ("Average: " & WorksheetFunction.Average(Target.Value)) End If End Sub -- HTH, Barb Reinhardt "1zipsails" wrote: How do I Roll over a range of cells and have their average show as a "pop up"? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
average range of cells with zero and blanks | Excel Discussion (Misc queries) | |||
Average Selected Cells From a Range | Excel Worksheet Functions | |||
How do I average a range of cells when one cell contains #N/A | Excel Discussion (Misc queries) | |||
Creating Custom Dialog Boxex (Popup) | Excel Discussion (Misc queries) | |||
average of visible cells in a filtered range | Excel Worksheet Functions |