Excel is what we do best
ALL YOUR EXCEL NEEDS
FREE Excel STUFF
Excel Newsletter
Advanced Search Search Excel Content
PRODUCTS
Development
Contact Us

Excel: Get Maximum Number Between 2 Numbers

Back to: Excel Custom Function/Formulas . Got any Excel/VBA Questions? Free Excel Help

See Also: Find Number Between 2 Numbers

This Custom Function will extract the maximum number between any two specified numbers. If used on large ranges of data, it will slow down Excel's calculation.

The Code

Function GetMaxBetween(rCells As Range, MinNum, MaxNum)

Dim rRange As Range

Dim vMax

Dim aryNums()

Dim i As Integer



ReDim aryNums(rCells.Count)

    For Each rRange In rCells

     vMax = rRange

        Select Case vMax

           Case MinNum + 0.01 To MaxNum - 0.01

              aryNums(i) = vMax

              i = i + 1

           Case Else

               GetMaxBetween = 0

           End Select

    Next rRange

    

    GetMaxBetween = WorksheetFunction.Max(aryNums)

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.

=GetMaxBetween(A1:A100,9,10)
This would return the highest number in the range A1:A100 that is less than 10, but greater than 9. Only accurate up to 0.01

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

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 special@ozgrid.com 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!

Add to Google Search Tips FREE Excel Help

Microsoft ® and Microsoft Excel ® are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft

GIVE YOURSELF OR YOUR COMPANY 24/7 MICROSOFT EXCEL SUPPORT & QUESTIONS