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 -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -

Python Tornado package error when running server -