Worksheet Function Error But Works Using F8?

biocentrism

Board Regular
Joined
Jul 28, 2014
Messages
187
Hello

I get a run-time error 1004: Unable to get the StDev_S property of the WorksheetFunction class on the code below:
Code:
'Define Start Row and End Row of Ranges
StartRow = rowTemplateFirst + loopRowsTemplate - DaysOffset
EndRow = rowTemplateFirst + loopRowsTemplate - 1
Set rngStDevRange = Range(Cells(StartRow, colReturn), Cells(EndRow, colReturn))
'Build Array
arrFV(loopRowsTemplate - 1) = Application.WorksheetFunction.StDev_S(rngStDevRange) * Sqr(252)

I have checked the code and the underlying sheet and there does not seem to be anything wrong. In fact the code runs when I step through the program in debug mode using F8.

How can the line generate an error when the macro is run, but work successfully when stepping through in debug mode using F8?

Any ideas?

Thank you.
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

Forum statistics

Threads
1,213,521
Messages
6,114,109
Members
448,548
Latest member
harryls

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