vbscript - VBS copy paste one cell in Excel -


i have found vbscripts copy ranges , between different worksheets, has simple script copying 1 cell in same sheet?

i have tried script, without luck:

ws.cell(2,35).value = cell(1,16)

it cells not cell , need set parent of both:

ws.cells(2,35).value =ws.cells(1,16).value 

Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -