I want cell W4 to be the standard deviation of range C to V.
Some of the rows will be empty and thus not able to calculate a standard deviation.
I would like to return a blank cell or better to delete the row.
For i = 1 to 1000
Range("W4").Cells(i, 1) = Application.WorksheetFunction.IfError(WorksheetFunction.StDev(Range(Range("C4").Cells(i, 1), Range("V4").Cells(i, 1))), "")
Next i
With the following code the cells in column W will be untouched in case
Application.WorksheetFunction.IfError(WorksheetFunction.StDev(Range(Range("C4").Cells(i, 1), Range("V4").Cells(i, 1))), "")
runs into an error.If you want to make sure that the cell in column W will be blank you could use the following code
And if you want to delete the complete row you have to adjust the loop as well like that