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
Bookmarks