is the fact of liberating an instance of a worksheet at the end of a procedure useful for something? here's the code:
sub Macro(path as String)
Dim ws as worksheet
set ws = thisWorkbook.Sheets("Recap")
....
...'do actions on the sheet ws
...
set ws = Nothing
end Sub
so my question is: if I do not release the object ws, is that it will automatically release?
Set ws = Nothing
serves some at the end of the procedure?
thanks