Created
December 19, 2017 22:45
-
-
Save bnjcbsn/f82436f944977ae3561a4871c141a529 to your computer and use it in GitHub Desktop.
Excel VBA, replace highlighted cells with their average
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Sub spreads() | |
' no error traps!! YOYO | |
scnt = Selection.Count | |
ssum = Application.WorksheetFunction.Sum(Selection) | |
pastingValue = ssum / scnt | |
Selection.Value = pastingValue | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment