- ·上一篇:excel表格怎么查找一样
- ·下一篇:怎么excel表格精度
excel表格里照片怎么样保存
1.如何保存EXCEL表格里的图片
EXCEL表格里的图片可以用复制粘贴的方式保存到电脑。
1、打开EXCEL,在要复制的图片上点右键,选择复制。
2、打开系统自带的画图程序,将复制的图片粘贴即可。
2.EXCEL表格中的图片怎么保存到桌面上??
在Microsoft Excel中,可以选中表格中的图片,右键选择另存为选项,设置图片名称后即可将图片保存在桌面。
1、首先点击打开excel文件,找到需要保存到桌面的图片,选中后,右键打开菜单。
2、在打开的菜单界面中,找到另存为图片选项,并点击选择。
3、将保存的位置选择为我的桌面。
4、最后更改图片名称后单击保存选项,即可完成了。
3.Excel表格中的图片怎样保存到电脑中
如果是单张图片保存,用下面方法:1、选中EXCEL中的图片;2、CTRL+C;3、点击:开始->程序->附件->画图;4、CTRL+V;5、点击文件->另存为,选择要保存的路径,同时保存类型选择:JPEG(*.JPG;*.JPEG;*.JPE;*.JFIF)即可。
如果是批量保存图片,需用到VBA: Sub lqxs() Dim ad$, m&, mc$, shp As Shape Dim nm$, n&, myFolder$ Sheet1.Activate n = 0 myFolder = ThisWorkbook.Path & "\图片\" '指定文件夹名称 For Each shp In ActiveSheet.Shapes If shp.Type = 13 Then If Len(Dir(myFolder, vbDirectory)) = 0 Then MkDir myFolder End If n = n + 1 ad = shp.TopLeftCell.Address m = shp.TopLeftCell.Row mc = Cells(m, 2).Value nm = mc & "-" & Format(n, "00") & ".jpg" shp.CopyPicture With ActiveSheet.ChartObjects.Add(0, 0, shp.Width, shp.Height).Chart .Paste .Export myFolder & nm, "JPG" .Parent.Delete End With Range(ad) = nm: shp.Delete End IfNext。