Forum Discussion
Rodolfo_Oviedo
Feb 26, 2019Copper Contributor
VBA CSE array UDF and dynamic arrays
CSE = Ctr+Shift+Enter UDF = User Defined Function In a row, I have a some inputs of a VBA CSE row array UDF located in the same row. The array function is copied down. The inputs of each copy are in...
- Feb 27, 2019Depends on how you pass the large range. If the declaration is of type Range or Variant, you are just passing an object reference. Whether the range is one cell or 10000 makes no difference for the time it takes to pass the object pointer.
JKPieterse
Feb 27, 2019Silver Contributor
Depends on how you pass the large range. If the declaration is of type Range or Variant, you are just passing an object reference. Whether the range is one cell or 10000 makes no difference for the time it takes to pass the object pointer.