我找到了复制范围和不同工作表之间的vbscripts,但是谁有一个简单的脚本只需将一个单元格复制到另一个单元格中?
我试过这个剧本,但没有运气:
ws.Cell(2,35).Value = Cell(1,16)
答案 0 :(得分:1)
Cells
而不是Cell
,您需要设置两者的父级:
ws.Cells(2,35).Value =ws.Cells(1,16).value
答案 1 :(得分:0)
Sub Paste_Values_Examples()
'Set a cell C1 value equal to another cell A1 value
Range("C1").Value = Range("A1").Value
End Sub
从https://www.excelcampus.com/vba/copy-paste-cells-vba-macros/
复制