体验零代码搭建

如何将同一图像快速插入多个工作表?

网友投稿  ·  2023-10-29 22:10  ·  所有内容  ·  阅读 496


如何将同一图像快速插入多个工作表?

通常,我们可以使用Excel中的“插入”功能将图片快速插入工作表中,但是,是否曾经尝试过将同一张图片插入工作簿的所有工作表中? 本文,我将为您介绍一种解决此工作的有用方法。

如何将同一图像快速插入多个工作表?

通常,我们可以使用Excel中的“插入”功能将图片快速插入工作表中,但是,是否曾经尝试过将同一张图片插入工作簿的所有工作表中? 本文,我将为您介绍一种解决此工作的有用方法。

如何将同一图像快速插入多个工作表?

使用VBA代码将同一图像插入工作簿的所有工作表中

使用VBA代码将同一图像插入工作簿的所有工作表中
惊人的! 在 Excel 中使用高效的选项卡,如 Chrome、Firefox 和 Safari! 每天节省50%的时间,并减少数千次鼠标单击!

以下VBA代码可以帮助您轻松地将图像插入所有工作表,请按以下步骤操作:

1。 按住 ALT + F11 键打开 Microsoft Visual Basic应用程序 窗口。

2。 点击 插页 > 模块,然后将以下代码粘贴到 模块 窗口。

VBA代码:将相同的图片插入所有工作表:

Sub InsertLogo() Dim I As Long Dim xPath As String Dim xShape As Shape Dim xRg As Range xPath = "C:\Users\DT168\Desktop\pic\logo.png" If Dir(xPath) = "" Then MsgBox "Picture file was not found in path!", vb***mation, "KuTools for Excel" Exit Sub End If For I = 1 To ActiveWorkbook.Sheets.Count Set xRg = Sheets(I).Range("A1") Set xShape = Sheets(I).Shapes.AddPicture(xPath, True, True, xRg.Left, xRg.Top, xRg.Width, xRg.Height) Next End Sub
Copy
Note: In the above code, C:\Users\DT168\Desktop\pic\logo.png is the path and name of your picture, and A1 in Range("A1") is the cell where you want to insert the picture, please change them to your own. 3. Then press F5 key to run this code, and then the specific picture has been inserted into every cell A1 of all worksheet at once. See screenshot: Note: The inserted picture will be adjusted to fit the cell size. Best Office Productivity Tools Transform Hours into Minutes with Kutools for Excel! Ready to supercharge your Excel tasks? Harness the power of Kutools for Excel - your ultimate time-saving tool. Streamline intricate tasks and glide through your data like a pro. Experience Excel at lightning speed! Why You Need Kutools for Excel 🛠️ Over 300 Powerful Features: Kutools is packed with more than 300 advanced features, simplifying your work in over 1500 scenarios. 📈 Superior Data Processing: Merge cells, remove duplicates, and perform advanced data conversions – all without breaking a sweat! ⏱️ Efficient Batch Operations: Why put in extra effort when you can work smart? Import, export, combine, and tweak data in bulk with ease. 📊 Customizable Charts and Reports: Access a broad variety of additional charts and generate insightful reports that tell a story. 🗄️ Powerful Navigation Pane: Gain an advantage with the robust Column Manager, Worksheet Manager, and Custom Favorites. 📝 Seven Types of Drop-down Lists: Make data entry a breeze with drop-down lists of various features and types. 🎓 User-Friendly: A breeze for beginners and a powerful tool for experts. Download Now and Soar Through Time with Excel! Read More... Free Download... Purchase... Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project. Open and create multiple documents in new tabs of the same window, rather than in new windows. Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day! Read More... Free Download... Purchase...


excel如何恢复排序后的数据 << 上一篇
2023-10-29 22:10
Excel如何截图 Excel几种截屏方法
2023-10-29 22:10
下一篇 >>

相关推荐