<<Convert Excel Spreadsheets to Web Pages | Trading Software That Operates Within Excel | Convert Excel, Access & Other Databases | Merge Excel Files>> |
---|
Back to: Excel Custom Function/Formulas . Got any Excel/VBA Questions? Free Excel Help
This Custom Function will sum every nth row or cell in the
specified range. How about a free
Handy Excel
Functions Add-in?
The Code
Function SumEveryNth2007(rRange As Range, lNth As Long, Optional SumEveryNthRow As Boolean) As Single Dim rCell As Range Dim strAddress As String ''''''''''''''''''''''''''''''''''''''''' 'Written by Ozgrid.com''''''''''''''''''' 'Sums every nth cell. 'If more than 1 column, summation order is left-to-right and top-to-bottom 'unless SumEveryNthRow=TRUE 'Function very inefficient, rRange should be as small as possible. 'Most efficient method is DSUM, shown here 'http://www.ozgrid.com/Excel/sum-every-2nd-nth-cell.htm ''''''''''''''''''''''''''''''''''''''''' On Error Resume Next If SumEveryNthRow = False Then With WorksheetFunction For Each rCell In rRange lStep = lStep + 1 If lStep Mod lNth = 0 Then sTot = .Sum(rCell, sTot) Next rCell End With SumEveryNth2007 = sTot Else strAddress = rRange.Address SumEveryNth2007 = Evaluate("=SUMPRODUCT((MOD(ROW(" & strAddress & ")," & lNth & ")=0)*(" & strAddress & "))") End If End Function
To use this UDF push Alt+F11 and go
Insert>Module and paste in the code. Push
Alt+Q and save. The Function will appear under "User
Defined" in the Paste Function dialog box (Shift+F3).
Use the Function in any cell as shown below.
=SumEveryNth2007($A$1:$A$10,2)
This would sum every 2nd
cell in the range $A$1:$A$10
=SumEveryNth2007($A$1:$B$10,TRUE)
This would sum every
2nd row in the range $A$1:$B$10
See Also: Excel Duplication Manager Add-in | Excel Number Manager Add-in | Excel Text Manager Add-in | Excel Named Range Add-in Manager | Excel OzGrid Plus Add-in | Excel Time Sheet | Excel Time Wage and Pay book
Excel Dashboard Reports & Excel Dashboard Charts 50% Off Become an ExcelUser Affiliate & Earn Money
Special! Free Choice of Complete Excel Training Course OR Excel Add-ins Collection on all purchases totaling over $64.00. ALL purchases totaling over $150.00 gets you BOTH! Purchases MUST be made via this site. Send payment proof to [email protected] 31 days after purchase date.
Instant Download and Money Back Guarantee on Most Software
Excel Trader Package Technical Analysis in Excel With $139.00 of FREE software!
Microsoft � and Microsoft Excel � are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft
Some of our more popular products are below...
Convert Excel Spreadsheets To Webpages | Trading In Excel | Construction Estimators | Finance Templates & Add-ins Bundle | Code-VBA | Smart-VBA | Print-VBA | Excel Data Manipulation & Analysis | Convert MS Office Applications To...... | Analyzer Excel | Downloader Excel
| MSSQL Migration
Toolkit |
Monte Carlo Add-in |
Excel
Costing Templates