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

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -