Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- Using LINEST for non-linear curve fitting
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- About Newton Excel Bach
- Cubic Splines
- Filling Blanks with Go To-Special (and local help rant)
- XLDennis, the MSDN Library, and VBA rant
- Downloads
- RCInteract and RC Design Functions 7.03
- Writing Arrays to the worksheet - VBA function
- Frame Analysis with Excel – 7; Shear deflections and support displacements
Recent Comments
Author Archives: dougaj4
Writing an array function from VBA
I have covered the topic of writing VBA arrays to a spreadsheet range quite frequently here. As a reminder, the procedure is: ReDim myarray(1 To NumArrayRows, 1 To NumArrayColumns) ‘ Fill array With Range(“MyNamedRange”) .ClearContents .Resize(NumArrayRows, NumArrayColumns).Name = “MyNamedRange” End … Continue reading
Using RC Design Functions – 3
In the previous post in this series I looked at the results available from the EStress function in the RC Design Functions spreadsheet. Three associated functions are: EstressCap PLCurve TStiff EStressCap finds the maximum bending moment for a specified axial load, … Continue reading
Bridge Design, Beyond the Basics …
… is the name of a series of full-day seminars that I will be presenting around Australia (together with two other bridge engineers), for the Concrete Institute of Australia, starting in Sydney next Wednesday, 12th June. Click below for details: Amongst the … Continue reading
Posted in Arch structures, Concrete, Newton
Tagged Bridge Design, CIA, Concrete Institute, Seminar, Strand7 API
Leave a comment
Recently discovered (and rediscovered) links
Math ∩ Programming – A place for elegant solutions (another Alfred Vachris link) About the Author My name is Jeremy Kun. I’m currently a mathematics PhD student at the University of Illinois in Chicago, and I did my undergraduate at Cal Poly … Continue reading
Posted in Arch structures, Dome Structures, Newton
Tagged arches, domes, Eurocodes, Everything, links, Maths, St Pauls
Leave a comment
Using Goal Seek on a multi-column range
Following a comment requesting help using my Goal Seek spreadsheet I have modified the macro to allow it to operate on a multi-column range. The spreadsheet can be downloaded from GSeek.zip, including the solution to the problem described below. The … Continue reading