Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- Using LINEST for non-linear curve fitting
- Weighted Least Squares Regression, using Excel, VBA, Alglib and Python
- Cubic Splines
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- Using the Strand7 API
- Using LinEst() on data with gaps
- Fitting high order polynomials
- Strand7 API GetNode functions
- Alternative iterative solvers
- Writing Arrays to the worksheet - VBA function
Recent Comments
Tag Archives: Aggregate function
Max, Min, and Aggregate
Recently I needed to find the maximum and minimum of a range of values including some #N/A values. Searching found a variety of solutions, of which the simplest (that works in all versions) seems to be: =MAX(IF(ISNUMBER(datarange),datarange)) =MIN(IF(ISNUMBER(datarange),datarange)) The function … Continue reading