Results 1 to 13 of 13

VBA Error: Intermittent Run-time error '91'

Threaded View

  1. #1
    Registered User
    Join Date
    03-23-2023
    Location
    London
    MS-Off Ver
    2302
    Posts
    6

    VBA Error: Intermittent Run-time error '91'

    Hi,

    I have a spreadsheet that contains a macro which has been used for over a year with no issues. The spreadsheet is used by employees in my company to book or cancel desk bookings in our office for chosen days.

    However, in the past month some users have started to get a Run-time error '91' (Object variable or With block variable not set). Some users aren't getting it at all, some users get it all the time and for others it can be intermittent. For me personally, I had a couple of weeks just passed where I didn't get the issue at all but suddenly its started happening for me again.

    I have a button called 'Book a Desk' that calls a macro to simply opens and initializes a UserForm. I've underlined the part that its failing on (NameTextBoxBook.Value). The TextBox on the UserForm is correctly named (NameTextBoxBook)- see attached. The point its failing on is very simple, its just setting a TextBox Value to be blank when the form loads.


    Private Sub UserForm_Initialize()

    Dim cDesk As Range
    Dim ws As Worksheet
    Set ws = Worksheets("Data")

    'Opens the booking form in the middle of the screen
    Me.StartUpPosition = 0
    Me.Left = Application.Left + (0.5 * Application.Width) - (0.5 * Me.Width)
    Me.Top = Application.Top + (0.5 * Application.Height) - (0.5 * Me.Height)

    'Sets the default values for Name (Blank), Desk Number (Blank) and Date (Cell C6)
    NameTextBoxBook.Value = ""
    DeskNumberTextBox.Value = ""
    DateTextBox.Value = Format(Range("C6").Value, "dd/mm/yyyy")

    'Pre-populates the Desk Number list from the tab called 'Data' which is hidden
    For Each cDesk In ws.Range("DeskNumber")
    With Me.DeskNumberTextBox
    .AddItem cDesk.Value
    End With
    Next cDesk

    End Sub



    I don't think the issue I'm seeing is specific to this workbook. I tried building a completely new workbook that just loaded a UserForm with a blank TextBox and had the same issue.

    Could it be linked to Windows Update or missing Library/Reference or something? Its strange how it has only recently started happening and there have not been any changes to the code in about year...and also strange how it works fine for some user and others its just started happening for.

    Help!

    Thank you
    Attached Images Attached Images

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Intermittent VBA error on pasting
    By Throughstream in forum Excel General
    Replies: 2
    Last Post: 03-30-2020, 02:40 PM
  2. Intermittent Table Macro error
    By jomili in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-30-2019, 01:59 PM
  3. Intermittent Unspecified Runtime Error
    By Rclay11541 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-28-2016, 05:05 PM
  4. Replies: 0
    Last Post: 08-05-2014, 11:37 AM
  5. Excel 2010 - Intermittent Run Time Error -2147417848 (80010108)
    By PatKlaus in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 12-30-2013, 02:46 PM
  6. [SOLVED] Intermittent Run-time Error 91: Object Variable or With Block variable not set
    By fraanchtoast in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 08-29-2012, 10:11 AM
  7. Run-time error '1004'; Document not saved - intermittent
    By Kerry in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 12-15-2005, 07:15 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1