VBA User form problem

floggingmolly

Board Regular
Joined
Sep 14, 2019
Messages
167
Office Version
  1. 365
Platform
  1. Windows
I have a userform and when the user selects a cell, say A3, the form populates with the data in that row. The user can update the data in the form and click the Add/Edit button. The issue is there can be rows with the same data in Column A. For example A3 might be 300001 and A4 might be the same 300001. So when they click the Edit button I need it to update the row they are on. Right now, using the code I have, it updates the first row that has 300001 so its updating the wrong row. Is there a way to make it update the row that was selected? Below is my code. Any help would be appreciated.

Code:
Sub EditAdd()

Dim emptyRow As Long

If UserForm1.TextBox1.Value <> "" Then
    flag = False
    i = 0
    ID = UserForm1.TextBox1.Value
    emptyRow = WorksheetFunction.CountA(Range("A:A")) + 2

    Do While Cells(i + 2, 1).Value <> ""

        If Cells(i + 2, 1).Value = ID Then
            flag = True
            For j = 2 To 16
                Cells(i + 2, j).Value = UserForm1.Controls("TextBox" & j).Value
            Next j
        End If

        i = i + 2

    Loop

    If flag = False Then
        For j = 1 To 16
            Cells(emptyRow, j).Value = UserForm1.Controls("TextBox" & j).Value
        Next j
    End If

End If

End Sub
 
Sorry, I just had a chance to check it out. The problem I have is there can be duplicates in Column A. In that case, it doesn't work. It imports whatever the first instance is into the userform. Example if 333 appears more than once in column A, I need to be able to import and update that row in the userform.

Oh dear not sure what I was thinking, must have had one of my senior moments

Try this updated version & see if does what you want

Dave

 
Upvote 0

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Floggingmolly,
accordion to the "FROM SELECTED CELL V4" I have create improved version with "Table1".
Things are not so simple as you think to modify basic idea so easily. Follow this steps.
Make a copy of "FROM SELECTED CELL V4".
Delete all codes.
This goes to the Sheet1 module
VBA Code:
Private Sub TextBox1_Change()
   ActiveSheet.ListObjects("Table1").Range.AutoFilter 1, "*" & TextBox1 & "*", xlFilterValues
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
   vCurrentRow = Target.Row
   GetData
End Sub
This goes to the Userform1 module
VBA Code:
Private Sub CommandButton1_Click()
   EditAdd
End Sub

Private Sub CommandButton2_Click()
   ClearForm
End Sub

Private Sub CommandButton3_Click()
   Unload Me
End Sub
This goes to the standard module
VBA Code:
Public vCurrentRow

Sub RoundedRectangle1_Click()
   vCurrentRow = ActiveCell.Row
   GetData
   UserForm1.Show False
End Sub

Sub ClearForm()
   For j = 1 To 17
       UserForm1.Controls("TextBox" & j).Value = ""
   Next j
   UserForm1.ComboBox1.Value = ""
End Sub

Sub GetData()
    With UserForm1
       For j = 1 To 17
           .Controls("TextBox" & j).Value = Sheets("Form").Cells(vCurrentRow, j).Text
       Next j
       .ComboBox1.Value = Sheets("Form").Cells(vCurrentRow, 18).Text
   End With
End Sub

Sub EditAdd()
   With Sheets("Form")
      If UserForm1.TextBox1 = "" Then MsgBox "There is no CSA": Exit Sub
      Set vFindRecord = .Columns(1).Find(UserForm1.TextBox1, , , xlWhole, , , True)
      If Not vFindRecord Is Nothing Then
         For j = 1 To 17
             .Cells(vCurrentRow, j).Value = UserForm1.Controls("TextBox" & j).Value
         Next j
         .Cells(vCurrentRow, 18).Value = UserForm1.ComboBox1.Value
          MsgBox "Record Updated"
      Else
         .ListObjects("Table1").ListRows.Add
         vCurrentRow = .ListObjects("Table1").ListRows.Count + 1
         For j = 1 To 17
             .Cells(vCurrentRow, j).Value = UserForm1.Controls("TextBox" & j).Value
         Next j
         .Cells(vCurrentRow, 18).Value = UserForm1.ComboBox1.Value
         MsgBox "New Record Added"
      End If
   End With
   ClearForm
   UserForm1.Hide
End Sub
 
Upvote 0
Solution
Floggingmolly,
accordion to the "FROM SELECTED CELL V4" I have create improved version with "Table1".
Things are not so simple as you think to modify basic idea so easily. Follow this steps.
Make a copy of "FROM SELECTED CELL V4".
Delete all codes.
This goes to the Sheet1 module
VBA Code:
Private Sub TextBox1_Change()
   ActiveSheet.ListObjects("Table1").Range.AutoFilter 1, "*" & TextBox1 & "*", xlFilterValues
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
   vCurrentRow = Target.Row
   GetData
End Sub
This goes to the Userform1 module
VBA Code:
Private Sub CommandButton1_Click()
   EditAdd
End Sub

Private Sub CommandButton2_Click()
   ClearForm
End Sub

Private Sub CommandButton3_Click()
   Unload Me
End Sub
This goes to the standard module
VBA Code:
Public vCurrentRow

Sub RoundedRectangle1_Click()
   vCurrentRow = ActiveCell.Row
   GetData
   UserForm1.Show False
End Sub

Sub ClearForm()
   For j = 1 To 17
       UserForm1.Controls("TextBox" & j).Value = ""
   Next j
   UserForm1.ComboBox1.Value = ""
End Sub

Sub GetData()
    With UserForm1
       For j = 1 To 17
           .Controls("TextBox" & j).Value = Sheets("Form").Cells(vCurrentRow, j).Text
       Next j
       .ComboBox1.Value = Sheets("Form").Cells(vCurrentRow, 18).Text
   End With
End Sub

Sub EditAdd()
   With Sheets("Form")
      If UserForm1.TextBox1 = "" Then MsgBox "There is no CSA": Exit Sub
      Set vFindRecord = .Columns(1).Find(UserForm1.TextBox1, , , xlWhole, , , True)
      If Not vFindRecord Is Nothing Then
         For j = 1 To 17
             .Cells(vCurrentRow, j).Value = UserForm1.Controls("TextBox" & j).Value
         Next j
         .Cells(vCurrentRow, 18).Value = UserForm1.ComboBox1.Value
          MsgBox "Record Updated"
      Else
         .ListObjects("Table1").ListRows.Add
         vCurrentRow = .ListObjects("Table1").ListRows.Count + 1
         For j = 1 To 17
             .Cells(vCurrentRow, j).Value = UserForm1.Controls("TextBox" & j).Value
         Next j
         .Cells(vCurrentRow, 18).Value = UserForm1.ComboBox1.Value
         MsgBox "New Record Added"
      End If
   End With
   ClearForm
   UserForm1.Hide
End Sub
I just tried this and it works. Now I just need to figure out how to add a few more combo boxes. I may need to add a couple dropdowns in between some of the rows. I really appreciate all your help. I would have never figured this out myself.
 
Upvote 0
I can add them to the end, but in the middle I'm not sure because 1-17 are text boxes. I'm assuming I need to update the code to be something like 1-10, then 11 for combobox, then 12-17 for text boxes again. If that made any sense at all.
 
Upvote 0
As I say, sometimes It's not easy to change basic idea.
The code will be changed depending of the userform controls layout.
Few changes, suppose.
 
Upvote 0
As I say, sometimes It's not easy to change basic idea.
The code will be changed depending of the userform controls layout.
Few changes, suppose.
Following your guidance I was able to add a ComboBox to the middle and was able to get it to work. I can't thank you enough for your help. You're awesome 😊.
 
Upvote 0

Forum statistics

Threads
1,215,676
Messages
6,126,161
Members
449,295
Latest member
DSBerry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top