Fluff meant for you to use the WorksheetFunction object which, as far as I know, is not all that slow (I use it all the time when I need Excel functionality that is not natively provided by VBA). In case you are not familiar with this object, you would call it like this...It slows down the program. Never use worksheet functions.
I blame microsoft. This is why people are using python instead of excel.
Fluff meant for you to use the WorksheetFunction object which, as far as I know, is not all that slow (I use it all the time when I need Excel functionality that is not natively provided by VBA). In case you are not familiar with this object, you would call it like this...
WorksheetFunction.Min(...arg list...)
WorksheetFunction.Max(...arg list...)
Sub testmax()
Dim X As Long
X = Application.WorksheetFunction.Max(Range("A1:A200000"))
Debug.Print X
End Sub
A big no no where/when exactly?