ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
楼主: tztz163

[求助] 关于表格自动拆分并发送邮件问题 在线等。。。

[复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-3-25 19:23 | 显示全部楼层
Mineshine老师,不好意思又要麻烦您了:

为什么这个分表程序有时候会出错?我已上传附件,先谢谢了

[ 本帖最后由 tztz163 于 2010-3-25 21:43 编辑 ]

对账单(总表).rar

19.18 KB, 下载次数: 54

TA的精华主题

TA的得分主题

发表于 2010-3-25 20:47 | 显示全部楼层
Sub Mail_ActiveSheet()
'http://www.rondebruin.nl/mail/folder2/mail2.htm
'Working in 2000-2007
    Dim FileExtStr As String, TempFilePath As String, TempFileName As String
    Dim MTO As String, MCC As String, Ad As String, Sql As String
    Dim Addr As Integer
    Dim FileFormatNum As Long
    Dim Sourcewb As Workbook, Destwb As Workbook
    Dim OutApp As Object, OutMail As Object, Conn As Object

    With Application
        .ScreenUpdating = False
        .EnableEvents = False
        .DisplayAlerts = False
    End With

    With Sheet2
        For i = 4 To .[A65536].End(xlUp).Row
            Set c = Sheet1.Range("A4:A" & Sheet1.[A65536].End(xlUp).Row).Find(.Cells(i, 1), , , 1)
            If Not c Is Nothing Then
                For Each sh In Sheets
                    If sh.Index > 2 Then sh.Delete  '刪除"公司"工作表
                Next sh
                Sheets.Add After:=Sheets(Sheets.Count)  '新增筛选工作表
                ActiveSheet.Name = .Cells(i, 1) '新工作表命名
                Sheet1.Rows("1:4").Copy ActiveSheet.Cells(1, 1)  '复制表头
                Addr = Sheet1.[a4].End(xlToRight).Column
                Ad = Split(Cells(1, Addr).Address, "$")(1)
                Set Conn = CreateObject("adodb.connection")
                Conn.Open "provider=microsoft.jet.oledb.4.0;extended properties='excel 8.0;hdr=no;';Data Source=" & ThisWorkbook.FullName
                Sql = "select * from [对账单$A5:" & Ad & Sheet1.[A65536].End(xlUp).Row & "] where f1='" & .Cells(i, 1) & "'"
                ActiveSheet.Cells(5, 1).CopyFromRecordset Conn.Execute(Sql) '筛选数据到新增工作表
                Conn.Close
                Set Conn = Nothing

                Set Sourcewb = ActiveWorkbook
            
                'Copy the sheet to a new workbook
                ActiveSheet.Copy
                'ActiveSheet.Delete
                Set Destwb = ActiveWorkbook

            
                'Determine the Excel version and file extension/format
                With Destwb
                    If Val(Application.Version) < 12 Then
                        'You use Excel 2000-2003
                        FileExtStr = ".xls": FileFormatNum = -4143
                    Else
                        'You use Excel 2007, we exit the sub when your answer is
                        'NO in the security dialog that you only see  when you copy
                        'an sheet from a xlsm file with macro's disabled.
                        If Sourcewb.Name = .Name Then
                            With Application
                                .ScreenUpdating = True
                                .EnableEvents = True
                            End With
                            MsgBox "Your answer is NO in the security dialog"
                            Exit Sub
                        Else
                            Select Case Sourcewb.FileFormat
                            Case 51: FileExtStr = ".xlsx": FileFormatNum = 51
                            Case 52:
                                If .HasVBProject Then
                                    FileExtStr = ".xlsm": FileFormatNum = 52
                                Else
                                    FileExtStr = ".xlsx": FileFormatNum = 51
                                End If
                            Case 56: FileExtStr = ".xls": FileFormatNum = 56
                            Case Else: FileExtStr = ".xlsb": FileFormatNum = 50
                            End Select
                        End If
                    End If
                End With
            
                '    'Change all cells in the worksheet to values if you want
                '    With Destwb.Sheets(1).UsedRange
                '        .Cells.Copy
                '        .Cells.PasteSpecial xlPasteValues
                '        .Cells(1).Select
                '    End With
                '    Application.CutCopyMode = False
            
                'Save the new workbook/Mail it/Delete it
                TempFilePath = Environ$("temp") & "\"
                TempFileName = .Cells(i, 1) & "公司对账单 " _
                             & Format(Now, "dd-mm-yyyy")    '附档档案名称
            
                Set OutApp = CreateObject("Outlook.Application")
                OutApp.Session.Logon
                Set OutMail = OutApp.CreateItem(0)
            
                Destwb.SaveAs TempFilePath & TempFileName & FileExtStr, _
                        FileFormat:=FileFormatNum
                On Error Resume Next
                    MTO = "": MCC = ""
                    For j = 2 To 4
                        If .Cells(i, j) <> "" Then MTO = MTO & ";" & .Cells(i, j) '收件人
                        If .Cells(i, j + 3) <> "" Then MCC = MCC & ";" & .Cells(i, j + 3)   '抄送
                    Next j
                    OutMail.TO = Mid(MTO, 2)    '收件人
                    OutMail.CC = Mid(MCC, 2)    '抄送
                    '.BCC = ""
                    OutMail.Subject = .Cells(i, 1) & "公司对账单"
                    '.Body = "Hi there"
                    StrMail = "<H3>Dear " & .Cells(i, 1) & "</H3>" & _
                    "附件是 貴公司的公司对账单,如对发出的内容有不明之处,请与本人联系。<BR><BR>" & _
                    "谢谢!</FONT>"
                    OutMail.HTMLBody = StrMail
                    
                    OutMail.Attachments.Add Destwb.FullName '对账单附档
                    'You can add other files also like this
                    '.Attachments.Add ("C:\test.txt")
                    OutMail.Send   'or use OutMail.Display
                On Error GoTo 0
                Destwb.Close SaveChanges:=False
            
                'Delete the file you have send
                Kill TempFilePath & TempFileName & FileExtStr
            
                Set OutMail = Nothing
                Set OutApp = Nothing
            End If
        Next i
    For Each sh In Sheets
        If sh.Index > 2 Then sh.Delete  '刪除"对账单","联系人邮箱"以外工作表
    Next sh
    End With
    With Application
        .ScreenUpdating = True
        .EnableEvents = True
        .DisplayAlerts = True
    End With
End Sub


这样行不行

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-3-25 21:08 | 显示全部楼层
可以了,谢谢!

可否告知是在哪里做更改了,我想知道原因,比对了半天眼睛也花了,呵呵。。

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-3-25 21:14 | 显示全部楼层
另外可否告知哪段代码是控制邮件手动发送还是自动发送的,谢谢

TA的精华主题

TA的得分主题

发表于 2010-3-25 21:24 | 显示全部楼层
加了
Ad = Split(Cells(1, Addr).Address, "$")(1)

if  Addr>26····

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-3-25 21:41 | 显示全部楼层
原帖由 wj2368 于 2010-3-25 21:24 发表
加了
Ad = Split(Cells(1, Addr).Address, "$")(1)

if  Addr>26····

非常感谢

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-3-25 21:54 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
原帖由 tztz163 于 2010-3-25 21:14 发表
另外可否告知哪段代码是控制邮件手动发送还是自动发送的,谢谢

已找到控制代码,再次表示感谢

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-3-26 19:44 | 显示全部楼层
wj2368老师,sunshine老师,
不好意思又要麻烦你们了,为什么在分表的时候会出现数据丢失,出现在R-AX列,

已上传附件,请过目,谢谢!

对账单(总表).rar

35.71 KB, 下载次数: 27

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-3-26 20:09 | 显示全部楼层
我的版本是2003的,单位也是用2003的,可否转个格式给我,谢谢

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-3-26 21:04 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
是的,不知道为什么中间数据丢失
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-16 10:28 , Processed in 0.036152 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表