Results 1 to 3 of 3

Editing data in userform and transferring back into row it came from

Threaded View

  1. #1
    Registered User
    Join Date
    08-06-2014
    Location
    Oxfordshire, England
    MS-Off Ver
    Microsift Office Professional Plus 2010
    Posts
    2

    Editing data in userform and transferring back into row it came from

    Hi All,

    I have a masssive lot of VBA coding to do and am fading fast. I have been tasked with creating a 'database' of project data (from two departments), in Excel using VBA with multiple Userforms. There are three spreadsheets 1) one with project data info on, 2) main spreadsheet that all userforms transfer their data too, 3) spreadsheet of all completed projects. Users will add and edit data.

    I have so far through searching the internet and reading been able to create all userforms for entering and editing data. I am currently seeking help in transferring ListBox data to spreadsheet, but I also need help with how to edit data pulled out of a spreadsheet into a userform - edited by the user (including ListBox entries), and then transfered back into the row it came from.

    I using the below coding to pull what data I can so far from spreadsheet. But there are two things i need to find out/know please. 1) how do I pull data from a spreadsheet into a listbox and change it in a UserForm 2) how do I then transfer all this UserForm data back into the row of the spreadsheet it came from. I am really struggling as there is so much code out there, and my brain is nerly full.

    Private Sub CommandButton1_Click()
    Row_Number = 0
    
    Do
    DoEvents
    
    Row_Number = Row_Number + 1
    item_in_review = Worksheets("ProjectDataSheet").Range("B" & Row_Number)
        If item_in_review = TextBoxProjectCode.Text Then
            TextBoxDatabaseRef.Text = Sheets("ProjectDataSheet").Range("A" & Row_Number)
            TextBoxProjectTitle.Text = Sheets("ProjectDataSheet").Range("C" & Row_Number)
            TextBoxDescription.Text = Sheets("ProjectDataSheet").Range("D" & Row_Number)
            TextBoxResponsible.Text = Sheets("ProjectDataSheet").Range("Q" & Row_Number)
            TextBoxBudget.Text = Sheets("ProjectDataSheet").Range("AM" & Row_Number)
        End If
            
    Loop Until item_in_review = ""
            
    End Sub
    Many thanks
    Last edited by NellieNoggs; 09-08-2014 at 04:12 AM. Reason: Add code tagse

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Need help transferring data from a userform to worksheet depending on a combobox selection
    By Annamarie in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 05-08-2014, 11:11 AM
  2. [SOLVED] Re :Userform Data not Transferring to Worksheet
    By Janto724 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-13-2013, 10:57 AM
  3. Editing Data Through A Userform
    By WoodsyMP5K in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-28-2012, 02:30 AM
  4. Transferring Data from Userform Listbox to Drop-down list in Worksheet
    By f5awp in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-30-2011, 12:22 AM
  5. UserForm transferring data
    By mariapata1974 in forum Excel General
    Replies: 8
    Last Post: 03-28-2010, 11:18 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