如何将这行 VBA 转换为 LibreOffice Basic?
Posted
技术标签:
【中文标题】如何将这行 VBA 转换为 LibreOffice Basic?【英文标题】:How do I convert this line of VBA into LibreOffice Basic? 【发布时间】:2021-02-02 16:33:42 【问题描述】:如何转换 VBA
With Worksheets("Sheet1")
.Range("A1:A10").Copy
.Range("D1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
End With
到带有选项 VBASupport 1 的 LibreOffice Basic
我认为这会起作用,但 PasteSpecial 的工作方式与 Excel 中的不同,我看不到任何模式。
【问题讨论】:
【参考方案1】:你可以这样编码
With ThisComponent.getSheets().getByName("Sheet1")
.getCellRangeByName("D1:D10").setDataArray(.getCellRangeByName("A1:A10").getDataArray())
End With
【讨论】:
谢谢@JohnSUN!以上是关于如何将这行 VBA 转换为 LibreOffice Basic?的主要内容,如果未能解决你的问题,请参考以下文章
如何打开保存文件对话框并通过在 libreoffice 中写入字符串来保存文件。下面的代码是在 VBA 中
LibreOffice (Calc) VBA 单元格总和(按索引)
如何在 libreoffice 6.4 中将 pdf 转换为 docx?