+ Reply to Thread
Results 1 to 12 of 12

Add to lookup table from user completed form

  1. #1
    Registered User
    Join Date
    06-28-2012
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    54

    Add to lookup table from user completed form

    Hi,

    I need to create a macro that will take a form that a user fills in and add the information to a pre existing lookup table.

    Attached is an example of what I am looking for and the basics are I would like the macro to use the Grouping to determine which column to add the category to (these are just the names I have used in the example) and then take the new category and replace the first time that the word 'Spare' appears in the lookup list.

    I can get all the basics of finding the correct column/row etc just can't work out how to join it up and fill all the data in from the user completed form.

    Thanks in advance,
    Tony
    Attached Files Attached Files
    Last edited by tony7262; 02-24-2016 at 05:32 AM. Reason: Forgot to add the attachment...

  2. #2
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Add to lookup table from user completed form

    Hi, Tony,

    maybe the following code could work for you (code goes into a standrad module for me):
    Please Login or Register  to view this content.
    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

  3. #3
    Registered User
    Join Date
    06-28-2012
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    54

    Re: Add to lookup table from user completed form

    Hi HaHoBe thank you this actually works better than I was hoping for - means I don't need to have the word 'Spare' all over the place I can just have the lists

  4. #4
    Registered User
    Join Date
    06-28-2012
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    54

    Re: Add to lookup table from user completed form

    Hi,

    I have been looking at this again and now decided it would be better if the form part was on a different tab to the lookup table (so I can lock the lookup table away and stop users changing things in there directly)

    I can't seem to get it to work across two sheets - I've got to here in the attached but if you can help that would be greatly appreciated.

    Dim var
    With Sheets("Sheet1")
    var = Application.Match(Range("G7"), Range.("D4", "F4"), 0)
    If Not IsError(var) Then
    Cells(Rows.Count, var).End(xlUp).Offset(1, 0).Value = Range("G8").Value
    Range("G7:G8").ClearContents
    Else
    MsgBox "no match found"
    End If
    End Sub
    Attached Files Attached Files

  5. #5
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Add to lookup table from user completed form

    Hi, Tony,

    could you please wrap the procedure with Code-Tags?

    Ciao,
    Holger

  6. #6
    Registered User
    Join Date
    06-28-2012
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    54

    Re: Add to lookup table from user completed form

    HTML Code: 
    Hopefully that worked....

  7. #7
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Add to lookup table from user completed form

    Hi, Tony,

    I didnīt mean to double up the code but alter it in posting #4.

    Please Login or Register  to view this content.
    The caveat with Match that itīs delivering the number of the column/row found within a range, if your code just reflects on a given range you must adjust that number of columns/rows with the number of blanks/written before that to get the correct number to add to.

    Ciao,
    Holger

  8. #8
    Registered User
    Join Date
    06-28-2012
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    54

    Re: Add to lookup table from user completed form

    Hi HaHoBe,

    Thanks again this does do what I was looking for - I have one more variable which I would like to account for...

    If I wanted to also add into Row 9 of Sheet2 a Yes/No box and then only have the macro run if everything else from the code worked but also that G9 said "Yes" can that be added as well? If it said "No" it would just not run.

    Thanks again for your help - stopped me going round in circles with this!
    Tony

  9. #9
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Add to lookup table from user completed form

    Hi, Tony,

    just add that range to the If-Statement like
    Please Login or Register  to view this content.
    Ciao,
    Holger

  10. #10
    Registered User
    Join Date
    06-28-2012
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    54

    Re: Add to lookup table from user completed form

    Hi Holger,

    Thanks for your help with this - I have edited everything to match to the 'live' file and the code is as follows:

    HTML Code: 
    I am having one final problem - it works perfectly if I select 'G&A' in D23 but if I select 'Selling' I get the "Error - Contact File Creator" message and I cannot work out why.

    Any chance you could troubleshoot the code? - ps it doesn't match to the example I posted earlier

    Thanks,
    Tony

  11. #11
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Add to lookup table from user completed form

    Hi, Tony

    the command UCase changes the string to all uppercase. In your code you compare the upper-case SELLING to Selling which should not match.

    You will need to add the logic for a third sheet into the code as that wasnīt planned by me.

    Please Login or Register  to view this content.
    Ciao,
    Holger

  12. #12
    Registered User
    Join Date
    06-28-2012
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    54

    Re: Add to lookup table from user completed form

    Thanks Holger - works perfectly now

+ 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. How to sort data in a table by user and qty completed by hour
    By luis6777 in forum Excel Formulas & Functions
    Replies: 13
    Last Post: 08-08-2015, 07:21 AM
  2. [SOLVED] User Form look at 2 Txt Boxes for entry but needs only one completed or a MSG will display
    By Colin Smit in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-05-2014, 01:16 PM
  3. [SOLVED] Lookup on user form isn't working
    By katieshields in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-20-2014, 08:12 AM
  4. [SOLVED] Save Text box Value against lookup value of combobox in User form
    By rain4uu in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-25-2013, 12:21 PM
  5. user form to lookup and retrieve data
    By maximus0120 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-04-2013, 05:14 PM
  6. [SOLVED] .SHOW Form to auto-save PDF of completed form
    By jonvanwyk in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-06-2012, 09:56 AM
  7. Looking to create a simple user form with lookup
    By Tim in forum Excel General
    Replies: 5
    Last Post: 11-14-2005, 01:00 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