Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- Using LINEST for non-linear curve fitting
- About Newton Excel Bach
- Cubic Splines
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- Section Properties with MeshPY, including torsion and warping
- Downloads
- Automatic download of csv files
- Daily Download 2: SLS design of reinforced concrete sections ...
- Writing Arrays to the worksheet - VBA function
- Downloads by category
Recent Comments
Category Archives: VBA
LatPile – Analysis of Lateral Loads on Piles
This post presents an Excel User Defined Function (UDF) to carry out the analysis of vertical piles subject to horizontal loads, using the same approach as employed in the DOS program COM624. A spreadsheet including the UDF and an on-spreadsheet … Continue reading
Posted in Beam Bending, Excel, Geotechnical Engineering, Newton, UDFs, VBA
Tagged COM624, Excel, Laterally loaded pile, LPile, UDF, VBA
11 Comments
Approximate Solutions of Polynomial Equations
Following on from the previous post, this post presents a number of methods of solving polynomial equations using approximate iterative methods in Excel. Similar methods can be used to find solutions to any other equation that can be evaluated numerically. … Continue reading
Posted in Excel, Maths, Newton, UDFs, VBA
Tagged Cubic, Excel, Newton-Raphson Method, Polynomial, Quartic, UDA, VBA
3 Comments
Evaluating Polynomial Functions
A polynomial function is a function of the form: a + b*x + c*x^2 + d*x^3 … and the derivative (the slope of the line at point x) of this function is given by: b + 2c*x + 3d*x^2 … … Continue reading
Randomising a list
A list can be sorted into random order by inserting a list of random numbers in an adjacent column and sorting both columns on the random number column. A similar procedure can be carried out through a VBA subroutine, avoiding … Continue reading
Listing sheet names
Answering my own question from the previous post, here is a short UDF that will return a list of worksheet names, starting with any chosen sheet: