Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default macro averages number above and below

You could do it manually, too--well, if those cells that will contain the
averages are empty.

Select the range to inspect
Edit|goto|Special|blanks
Notice that only the cells getting the =average() formula are selected.
type this:
=average(
hit the uparrow, then the comma, then the down arrow.
Then hit the close parent )

Now hit ctrl-enter to fill the selection with that formula. Excel will adjust
the formula for each of the cells.

In code, it would look like:

Option Explicit
Sub testme()

Dim myRng As Range
Dim myBlanks As Range

With ActiveSheet
Set myRng = .Range("a1:h20") 'whatever???
Set myBlanks = Nothing
On Error Resume Next
Set myBlanks = myRng.SpecialCells(xlCellTypeBlanks)
On Error GoTo 0

If myBlanks Is Nothing Then
MsgBox "no blanks!"
Else
myBlanks.FormulaR1C1 = "=AVERAGE(R[-1]C,R[1]C)"
End If
End With

End Sub



J-Chef-T wrote:

Needing to set a macro that can create averages of the number directly above
and the number directly below. For example the spreadsheet would looke like
so.

2
avg of 2&3
3
4
avg of 4&5

help?


--

Dave Peterson
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
How do I convert A-E grades to number averages? Abigail Excel Discussion (Misc queries) 18 March 23rd 08 11:38 PM
first ten and last ten averages aazharr Excel Worksheet Functions 2 February 28th 08 03:28 PM
averages without zero RcWend Excel Worksheet Functions 6 July 10th 07 09:20 PM
macro or formula to get rid of a number A.S. Excel Discussion (Misc queries) 2 April 2nd 07 11:04 PM
Random number Macro Mike Rogers Excel Discussion (Misc queries) 4 February 25th 06 03:27 AM


All times are GMT +1. The time now is 04:22 AM.

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

About Us

"It's about Microsoft Excel"