+ Reply to Thread
Results 1 to 4 of 4

Compile Error - Variable Not defined

  1. #1
    Registered User
    Join Date
    12-19-2014
    Location
    Maryland
    MS-Off Ver
    Office 2010
    Posts
    40

    Compile Error - Variable Not defined

    Good Morning Everyone,

    I still have not been able to resolve a compile error that states the "Variable has not been Defined". Basically, I am searching for the Part Number on My form on sheet 7 in columns B2:B50000. I've tried rewriting this every way imaginable, with no success in resolving this error. I am new to the world of code and could use some help to solve this problem.

    Below is the code I am using to Find the Record by Part Number on my form, allowing some edits and then updating the editable columns back to the Worksheet. I have also attached a copy of the project as well. The form and Code exist on a form called Find Part (frmFindPart)


    Private Sub cmdAddtoTicket_Click()

    'Find Part Number on Sheet7 (Part Table) in Cell Range ("B2:B50000")
    Set findvalue = Sheet7.Range("B2:B50000").Find(What:=Me.txtpartnumber, LookIn:=xlValues)

    'findvalue.Value = Me.txtPartNumber "Allow Edits to be Updated to the Record"
    findvalue.Offset(0, -1).Value = Me.txtquantityneeded.Value
    findvalue.Offset(0, 5).Value = Me.txtPkgQty.Value
    findvalue.Offset(0, 6).Value = Me.txtPkgCost.Value
    findvalue.Offset(0, 7).Value = Me.TxtCostEach.Value
    findvalue.Offset(0, 8).Value = Me.txtMultiplier.Value
    findvalue.Offset(0, 9).Value = Me.txtSellEach.Value

    Call MsgBox("The Part has been Updated", vbInformation, "Edit Part")

    'reset error
    On Error GoTo 0
    Exit Sub

    Unload Me
    frmfindpart.Show

    End Sub


    Here is my File that I am working on: Perfect Degree Service Ticket TestV5.xlsm

    I appreciate any help I can get.

    Thanks Much and Have a Great day!
    Larrry

  2. #2
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Compile Error - Variable Not defined

    Add this at the start of the sub.
    Please Login or Register  to view this content.
    PS Can you add code tags when posting code?
    If posting code please use code tags, see here.

  3. #3
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: Compile Error - Variable Not defined

    Please use CODE tags when you post.

    You simply haven't declared / dimensioned the variable "findvalue"

    Simply add:
    Please Login or Register  to view this content.
    at the top of that procedure
    let Source = #table({"Question","Thread", "User"},{{"Answered","Mark Solved", "Add Reputation"}}) in Source

    If I give you Power Query (Get & Transform Data) code, and you don't know what to do with it, then CLICK HERE

    Walking the tightrope between genius and eejit...

  4. #4
    Registered User
    Join Date
    12-19-2014
    Location
    Maryland
    MS-Off Ver
    Office 2010
    Posts
    40

    Re: Compile Error - Variable Not defined

    Thank you so much for replying. We are getting close now. It did find the record and updated the quantity I entered for that record. Yeah!

    Unfortunately it did not update the changes in the other text Boxes. I don't understand why since these values update themselves on the form when ever the Pkg Qty is changed or the Pkg Cost are changed. When either of these two values change it performs a Vlookup to determine the correct Multiplier then Multiplies the Cost Each by the Multiplier to get the Sell price.

    I changed the Pkg Cost on the user form (Find Part Form) and it updated all these values on the form as it was supposed to. Unfortunately when it saved the record (Update Part and Add Quantities to Ticket)it didn't save the new values to the record.

    In an earlier piece of code it does the following on an update of either the PKG Cost or PKG Qty:


    Private Sub txtPkgCost_AfterUpdate()

    TxtCostEach.Value = txtPkgCost / txtPkgQty
    txtMultiplier.Value = Application.Lookup(CDbl(TxtCostEach), Sheets("Tables").Range("D5:F30"))
    txtSellEach.Value = TxtCostEach * txtMultiplier

    End Sub

    Is it possible that this piece of code may need to be added to the code in my previous Thread in order to recalculate the values and move them over? Again, it did pick up the Qty Needed Entry on the form, but not the changes in the calculation values. I would have thought that the values had already changed on the form and updated during the Save process.

    This is much closer then I have been and I appreciate the advice. I have reattached the modified project with the piece I added as you requested.

    Perfect Degree Service Ticket TestV6.xlsm

    Thanks so Much!
    Larry

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Compile error: Variable not defined
    By jrpuig1977 in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 10-16-2014, 06:55 PM
  2. [SOLVED] Compile Error: Variable Not Defined
    By Limitedtimeonearth in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 06-03-2013, 03:07 PM
  3. Compile error variable not defined
    By AsifShabbir in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 04-04-2011, 10:53 AM
  4. Compile error on variable (not defined)
    By mqdias in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-12-2007, 06:47 AM
  5. [SOLVED] Variable not defined compile error
    By Phil Hageman in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-17-2005, 09:05 AM

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