gpt4 book ai didi

excel - Matlab - ActiveX 移动 Excel 工作表

转载 作者:行者123 更新时间:2023-12-03 03:34:19 25 4
gpt4 key购买 nike

将 Excel 工作表从一本书移动到另一本书的命令是什么?注释行失败。

X = actxserver('Excel.Application'); 
XW0 = X.Workbooks.Open('t0.xlsx');
XW2 = X.Workbooks.Open('t2.xlsx');
XW2.Worksheets.Item(1).Name = 't2';
% XW2.Worksheets.Item(1).Move('after',XW0.Sheets(1));
XW0.Save
XW0.Close(false)
XW2.Save
XW2.Close(false)
X.Quit

最佳答案

通过替换您的注释,我能够将工作表 t2t2.xlsx 移动到 t0.xlsx 中的工作表 1 之后 -与此一致:

XW2.Worksheets.Item(1).Move([], XW0.WorkSheets.Item(1));

请注意第一个参数的空矩阵,这是 Before 选项所在的位置(请参阅 here )。

关于excel - Matlab - ActiveX 移动 Excel 工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44171815/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com