Hi
If I want to change a cell value then I can write this code
sub abcthisworkbook.activesheet.cells(1,1).value =10
end sub
but I can also do that by writing this code
sub abccells(1,1).value =10
end sub
I see both give the same result. I do not see any advantage of one on another except...