Received Run time error '91' Object variable or with block variable not set

Rajkumar Bhalodia

New Member
Joined
Dec 13, 2020
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
Hello,

I received Run time error '91' Object variable or with block variable not set while running macro from

Mail a row or rows to each person in a range (Mail a row or rows to each person in a range)​

1607849660043.png


Please see code below.

Please resolve this issue. thank you very much in advance.
VBA Code:
Sub Macro2()


Dim OutApp As Object
Dim OutMail As Object
Dim rng As Range
Dim Ash As Worksheet
Dim Cws As Worksheet
Dim Rcount As Long
Dim Rnum As Long
Dim FilterRange As Range
Dim FieldNum As Range

On Error GoTo cleanup
Set OutApp = CreateObject("Outlook.Application")

With Aplication
     .EnableEvents = False
     .ScreenUpdating = False
    
    
End With


Set Ash = ActiveSheet

Set FilterRange = Ash.Range("A1:T" & Ash.Rows.Count)
FieldNum = 2 'Filter Column = A

Set Cws = Worksheets.Add
FilterRange.Columns(FieldNum).AdvanceFilter _
            Action:=xlFilterCopy, _
            CopyToRange:=Cws.Range("A1"), _
            CriteriaRange:="", Unique:=True

Rcount = Application.WorksheetFunction.CountA(Cws.Columns(1))

If Rcount >= 2 Then
         For Rnum = 2 To Rcount
   

FilterRange.AutoFilter Field:=FiledNum, _
                       Criteria1:=Cws.Cells(Rnum, 1).Value
                      
mailAddress = ""
On Error Resume Next
mailAddress = Application.WorksheetFunction. _
              VLookup(Cws.Cells(Rnum, 1).Value, _
                     Worksheets("Mailinfo").Range("A1:B" & _
                     Worksheets("Mailinfo").Rows.Count), 2, False)
                    
On Error GoTo 0

If mailAddress <> "" Then
               With Ash.AutoFilter.Range
                    On Error Resume Next
                    Set rng = .SpecialCells(xlCellTypeVisible)
                    On Error GoTo 0
                End With
               
Set OutMail = OutApp.CreateItem(0)

On Error Resume Next
                With OutMail
                    .To = mailAddress
                    .Subject = "COB Reminder"
                    .HTMLBody = RangetoHTML(rng)
                    .Display  'Or use Send
                End With
                On Error GoTo 0
               
Set OutMail = Nothing
            End If
           
Ash.AutoFilterMode = False

        Next Rnum
    End If

cleanup:
     Set OutApp = Nothing
     Application.DisplayAlerts = False
     Cws.Delete
     Application.DisplayAlerts = True
    
     With Application
          .EnableEvents = True
          .ScreenUpdating = True
        End With
       
        End Sub
       
Function RangetoHTML(rng As Range)
       
           
    Dim fso As Object
    Dim ts As Object
    Dim TempFile As String
    Dim TempWB As Workbook
   
     TempFile = Environ$("temp") & "/" & Format(Now, "dd-mm-yy h-mm-ss") & ".htm"
    
    rng.Copy
    Set TempWB = Workbooks.Add(1)
    With TempWB.Sheets(1)
        .Cells(1).PasteSpecial Paste:=8
        .Cells(1).PasteSpecial xlPasteValues, , False, False
        .Cells(1).PasteSpecial xlPasteFormats, , False, False
        .Cells(1).Select
        Application.CutCopyMode = False
        On Error Resume Next
        .DrawingObjects.Visible = True
        .DrawingObjects.Delete
        On Error GoTo 0
    End With
   
    With TempWB.PublishObjects.Add( _
         SourceType:=xlSourceRange, _
         Filename:=TempFile, _
         Sheet:=TempWB.Sheets(1).Name, _
         Source:=TempWB.Sheets(1).UsedRange.Address, _
         HtmlType:=xlHtmlStatic)
        .Publish (True)
    End With
   
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set ts = fso.GetFile(TempFile).OpenAsTextStream(1, -2)
    RangetoHTML = ts.ReadAll
    ts.Close
    RangetoHTML = Replace(RangetoHTML, "align=center x:publishsource=", _
                          "align=left x:publishsource=")
                         
    TempWB.Close savechanges:=False
                      
                      
    Kill TempFile
    Set ts = Nothing
    Set fso = Nothing
    Set TempWB = Nothing
   
    End Function
   

End Function
 
Last edited by a moderator:

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
I think you did not set FieldNum range.
 
Upvote 0
VBA Code:
Option Explicit

Sub Macro2()
    Dim OutApp As Object
    Dim OutMail As Object
    Dim rng As Range
    Dim Ash As Worksheet
    Dim Cws As Worksheet
    Dim Rcount As Long
    Dim Rnum As Long
    Dim FilterRange As Range
    Dim FieldNum As Long
    Dim mailAddress As String
    On Error GoTo cleanup
    Set OutApp = CreateObject("Outlook.Application")
    With Application
        .EnableEvents = False
        .ScreenUpdating = False
    End With
    Set Ash = ActiveSheet
    Set FilterRange = Ash.Range("A1:T" & Ash.Rows.Count)
    FieldNum = 2    'Filter Column = A
    Set Cws = Worksheets.Add
    FilterRange.Columns(FieldNum).AdvanceFilter _
            Action:=xlFilterCopy, _
            CopyToRange:=Cws.Range("A1"), _
            CriteriaRange:="", Unique:=True
    Rcount = Application.WorksheetFunction.CountA(Cws.Columns(1))
    If Rcount >= 2 Then
        For Rnum = 2 To Rcount
            FilterRange.AutoFilter Field:=FieldNum, _
                                   Criteria1:=Cws.Cells(Rnum, 1).Value
            mailAddress = ""
            On Error Resume Next
            mailAddress = Application.WorksheetFunction. _
                          VLookup(Cws.Cells(Rnum, 1).Value, _
                                  Worksheets("Mailinfo").Range("A1:B" & _
                                                               Worksheets("Mailinfo").Rows.Count), 2, False)
            On Error GoTo 0
            If mailAddress <> "" Then
                With Ash.AutoFilter.Range
                    On Error Resume Next
                    Set rng = .SpecialCells(xlCellTypeVisible)
                    On Error GoTo 0
                End With
                Set OutMail = OutApp.CreateItem(0)
                On Error Resume Next
                With OutMail
                    .To = mailAddress
                    .Subject = "COB Reminder"
                    .HTMLBody = RangetoHTML(rng)
                    .Display  'Or use Send
                End With
                On Error GoTo 0
                Set OutMail = Nothing
            End If
            Ash.AutoFilterMode = False
        Next Rnum
    End If
cleanup:
    Set OutApp = Nothing
    Application.DisplayAlerts = False
    Cws.Delete
    Application.DisplayAlerts = True
    With Application
        .EnableEvents = True
        .ScreenUpdating = True
    End With
End Sub
Tested on 2013
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,643
Members
449,093
Latest member
Ahmad123098

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top