我需要创建一个VBA语句,它将复制整个活动工作表,然后粘贴为值 - 看起来很简单,但我不熟悉VBA - 它实际上是自动化“点击”#39;在左上方并复制 - >粘贴为值。这是我正在尝试的:
import rpyc
conn = rpyc.ssl_connect("myserver", port = 12345, keyfile=None,
certfile=None)
conn.execute("print ('world')")
答案 0 :(得分:5)
你错过了xlPasteValues中的s。另外,最好添加Application.CutCopyMode = False以避免在复制区域周围行进蚂蚁。
Sub CopyPasteSheetAsValues()
'Copy and Paste Summary Sheet as Values
Sheets("Summary Build").Cells.Copy
Sheets("Summary Build").Cells.PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub