Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- XLDennis, the MSDN Library, and VBA rant
- Using LINEST for non-linear curve fitting
- Filling Blanks with Go To-Special (and local help rant)
- Cubic Splines
- About Newton Excel Bach
- Writing Arrays to the worksheet - VBA function
- Daily Download 4: Continuous Beam Analysis
- Daily Download 5: Frame Analysis
- Retrieving unique values from a range or array ...
Recent Comments
Tag Archives: Excel 2007 performance
Importing tab delimited files and clearing large ranges
Wray Sisk commented on Importing text files with VBA – 3, asking if it could be modified to read tab delimited files. It could be, and has been; download here: Text-in2.ZIP It turned out to be a simple task; just … Continue reading
Posted in Excel, UDFs, VBA
Tagged Excel, Excel 2007 performance, import text, slow clearing, UDF, VBA
2 Comments
Worksheetfunction vs UDF – 2
Previous Post In a recent post at microsoft.public.excel.programming Charles Williams (Decision Models) found that a VBA User Defined Funcion (UDF) searching through a defined range for a specified number was very much slower than simply using .worksheetfunction.match as below: Function VBAMatch2(arg … Continue reading
Worksheetfunction vs UDF
The previous post provided VBA code for a number of trigonometric functions, most of which are already available in Excel. Why bother you may say, why not just use the WorksheetFunction object? The numbers below provide the answer: Time to … Continue reading