Add in for speed test

mrichard

New Member
Joined
Mar 23, 2020
Messages
29
Office Version
  1. 2016
Platform
  1. Windows
Hi all,

I just rewrote some of my formulas using the LET function and wanted to know how much faster my workbook is.

Does anybody know of a free Excel add in for testing the calculation speed of a workbook?


Thanks
Mark
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Interestingly, a few years ago, MrExcel did a test on the LET function to show the speed differences.
See: Finding VBA Bottlenecks with VBA Profiler

Ironically, it appears he uses the same program Fluff referenced.
It looks like you can download a trial version for free.
 
Upvote 0
Or maybe a simpler approach ?

VBA Code:
Sub TimeAMacro ()

'The code is below…

'Enter the START TIMER code when you want to start the timer

'-----START TIMER-----
Dim StartTime As Double
Dim TimeTaken As String
StartTime = timer

'Then all your code will go here…

'Then add the END TIMER code when you want to show how long it’s taken.

'------ END TIMER------
TimeTaken = Format((timer - StartTime) / 86400, "hh:mm:ss")

MsgBox "Running time was " & TimeTaken & " (hours, minutes, seconds)"

End Sub
 
Upvote 0
Logit,

Except they are not testing VBA code, they are testing native Excel formula calculation speed.
 
Upvote 0

Forum statistics

Threads
1,214,376
Messages
6,119,174
Members
448,870
Latest member
max_pedreira

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top