- ©«¤l
- 45
- ¥DÃD
- 15
- ºëµØ
- 0
- ¿n¤À
- 73
- ÂI¦W
- 0
- §@·~¨t²Î
- windows 7
- ³nÅ骩¥»
- office 2010
- ¾\ŪÅv
- 20
- µù¥U®É¶¡
- 2015-12-13
- ³Ì«áµn¿ý
- 2024-7-17
|
Sub Mail_workbook_Outlook_1()
'Working in Excel 2000-2016
'This example send the last saved version of the Activeworkbook
'For Tips see: http://www.rondebruin.nl/win/winmail/Outlook/tips.htm
Dim rgExp As Range
ActiveSheet.Range("¿é¥X³øªí!A1:V4001").AutoFilter Field:=22, Criteria1:="<>"
Set rgExp = Range("a1", ActiveSheet.Range("v65536").End(xlUp))
''' Copy range as picture onto Clipboard
rgExp.CopyPicture Appearance:=xlScreen, Format:=xlPrinter
''' Create an empty chart with exact size of range copied
With ActiveSheet.ChartObjects.Add(Left:=rgExp.Left, Top:=rgExp.Top, _
Width:=rgExp.Width, Height:=rgExp.Height)
.Name = "myChart"
§ï¼g¦¨¥\¡A¦ý¬OÁÙ¤£¯à «ü©w þÓ¤u§@ï T_T |
|