Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Excel 仪表板中遇到了一个非常奇怪的要求。
我在特定工作表的 Range 中有一些数据。我需要拍摄它的快照并将其显示为顶部所有其他工作表中的图像。
我知道我可以简单地复制和粘贴范围,但是这种标题在隐藏工作表上的列时会产生一些问题。
有同样的解决方案/技巧吗?
Range 有一个 .CopyPicture 方法。
或使用相机工具:
Sub Tester() Sheet1.Range("D5:E16").Copy Sheet2.Activate Sheet2.Range("A1").Select ActiveSheet.Pictures.Paste Link:=True Application.CutCopyMode = False End Sub