Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- 2DFrame-py
- Using LINEST for non-linear curve fitting
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- Downloads
- Weighted Least Squares Regression, using Excel, VBA, Alglib and Python
- Biaxial bending update
- Cubic Splines
- XLDennis, the MSDN Library, and VBA rant
- Automatic download of csv files
- The history of the theory of beam bending - Part 3
Recent Comments
Tag Archives: VBA
Concrete ULS spreadsheet update-2
The concrete ULS design spreadsheet last posted at: Concrete ULS spreadsheet update has been updated to fix a problem encountered with non-symmetrical reinforcement using the Eurocode 2 rectangular stress block. Download from ULS Design Functions. Typical input and output interaction diagram are … Continue reading
Posted in Beam Bending, Concrete, Excel, Newton, UDFs, VBA
Tagged Eurocode 2, Excel, Prestressed Concrete Design, Reinforced concrete design, UDF, ULS Design Functions, VBA
11 Comments
Concrete ULS spreadsheet update
The ULS Design Functions spreadsheet has been updated with the addition of provision for the Eurocode 2 rectangular stress block. The new spreadsheet can be downloaded from: ULS Design Functions.zip (including full open-source code). For more details see: ULS Analysis … Continue reading
Posted in Concrete, Excel, Newton, UDFs, VBA
Tagged Concrete section, Excel, Prestressed concrete, Reinforced Concrete, UDF, ULS design, VBA
10 Comments
Using Index() as an array function
As promised, this post looks at using the Excel built in Index() function to operate on arrays; it also provides a VBA user defined function (UDF), VBIndex, which simplifies working with arrays within VBA, and also provides improved functionality when … Continue reading
Two new blogs
Two new Excel/computer related blogs that I have found recently are: Useful Gyaan (Sharing Stuff to Make life @ work easier) and MS EXCEL UNPLUGGED (which looks like a good resource on using pivot tables) In the near future I will be … Continue reading
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