+ Reply to Thread
Results 1 to 11 of 11

Populate a UserForm

Hybrid View

  1. #1
    Registered User
    Join Date
    12-14-2007
    Location
    Georgia
    Posts
    78

    Populate a UserForm

    I have some textboxs and some comboboxs, on a user form I want them to populate according to the row the cell is selected on.

    Example:

    cell c15 is selected,

    UserForm1 Textbox2 populates with value of A15
    UserForm1 Textbox1 populates with value of D15
    UserForm1 Combobox2 populates with value of F15

    And is the user changes a value I need it to update the cell.

    Thank You for the help.
    Excel 2007 SP1

  2. #2
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161
    they are achieved like this
    Textbox1.Value = Range("A" & Activecell.row).value
    Not all forums are the same - seek and you shall find

  3. #3
    Registered User
    Join Date
    12-14-2007
    Location
    Georgia
    Posts
    78
    Ok, thank you this is what I have.

    Private Sub FormButton1_Click()
    UserForm1.Show
    End Sub
    
    Private Sub Worksheet_Activate()
        If UserForm1.Visible = True Then
          userform_data
        End If
    End Sub
    
    Private Sub Worksheet_Change(ByVal Target As Range)
        If UserForm1.Visible = True Then
          userform_data
        End If
    End Sub
    
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        If UserForm1.Visible = True Then
          userform_data
        End If
    End Sub
    Module is

    Sub userform_data()
        UserForm1.mfg.Value = Range("C" & ActiveCell.Row).Value
        UserForm1.qty.Value = Range("D" & ActiveCell.Row).Value
        UserForm1.part.Value = Range("E" & ActiveCell.Row).Value
        UserForm1.Description.Value = Range("F" & ActiveCell.Row).Value
        UserForm1.vendor.Value = Range("G" & ActiveCell.Row).Value
        UserForm1.po.Value = Range("H" & ActiveCell.Row).Value
        UserForm1.poDate.Value = Range("I" & ActiveCell.Row).Value
        UserForm1.ngCost.Value = Range("J" & ActiveCell.Row).Text
        UserForm1.ngTotal.Caption = Range("K" & ActiveCell.Row).Text
        UserForm1.custCost.Caption = Range("L" & ActiveCell.Row).Text
        UserForm1.custTotal.Caption = Range("M" & ActiveCell.Row).Text
    End Sub
    Which seems to work good, But what do I need to do to also make it change the cell value If they change the data on the form.?
    Last edited by WHWALDREP; 03-07-2008 at 09:13 AM.

  4. #4
    Valued Forum Contributor mudraker's Avatar
    Join Date
    11-10-2003
    Location
    Melbourne, Australia
    Posts
    3,983
    they are achieved like this
    Range("C" & ActiveCell.Row).Value = UserForm1.mfg.Value
    Please Read Forum Rules Before Posting
    Wrap VBA code by selecting the code and clicking the # icon or Read This
    How To Cross Post politely

    Top Excel links for beginners to Experts

    If you are pleased with a member's answer then use the Scales icon to rate it
    If my reply has assisted or failed to assist you I welcome your Feedback.

  5. #5
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161
    For the form to change the data on the sheet try:
    if UserForm1.mfg.Value <> Range("C" & ActiveCell.Row).Value Then
    Range("C" & ActiveCell.Row).Value = Userform1.mfg.value
    end if

  6. #6
    Registered User
    Join Date
    12-14-2007
    Location
    Georgia
    Posts
    78
    One other question and thank you for all your help that worked great.

    If the user selects rows 10 - 15 How can I make it change all of them, and display only common info.
    Example

    if mfg = A-B on 10-15 display the manufacturer and if I change cost it would change on all 5 rows.

    Thank you so much.

  7. #7
    Registered User
    Join Date
    12-14-2007
    Location
    Georgia
    Posts
    78
    Ok how can I make this work?

    Private Sub lead_Change()
    If Selection.Rows.Count >= 2 Then
        Range("B" & ActiveCell.Rows).Value = UserForm1.lead.Value ' Global range fault
    Else
        If UserForm1.lead.Value <> Range("B" & ActiveCell.Row).Value Then
            Range("B" & ActiveCell.Row).Value = UserForm1.lead.Value
        End If
    End If
    End Sub

  8. #8
    Registered User
    Join Date
    12-14-2007
    Location
    Georgia
    Posts
    78
    Ok this what I have thus far. But now it changes the column of rows that is selected, I need it to change column B when multiply rows are selected. Thanks for the help.

    Private Sub lead_Change()
    Dim c As Range
    Set c = Selection.Rows
    If UserForm1.lead.Value <> Range("B" & ActiveCell.Row).Value Then
        If Selection.Rows.Count > 1 Then
                c = UserForm1.lead.Value
        Else
            Range("B" & ActiveCell.Row).Value = UserForm1.lead.Value
        End If
    End If
    End Sub

  9. #9
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229
    This will put the userform's value from Contol "lead" into cell B of every selected row.
    Private Sub lead_Change()
        Selection.EntireRow.Range("B1").Value = Me.lead.Value
    End Sub
    Last edited by mikerickson; 03-08-2008 at 11:13 PM.
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

  10. #10
    Registered User
    Join Date
    12-14-2007
    Location
    Georgia
    Posts
    78
    Quote Originally Posted by mikerickson
    This will put the userform's value from Contol "lead" into cell B of every selected row.
    Private Sub lead_Change()
        Selection.EntireRow.Range("B1").Value = Me.lead.Value
    End Sub
    the whole rows a not selected just a range of rows like C1:C15 or E13:E53


    Thanxs

  11. #11
    Registered User
    Join Date
    12-14-2007
    Location
    Georgia
    Posts
    78
    Heres what I got it works but does not look like it was the best way.

    Private Sub lead_Change()
    If UserForm1.lead.Value <> Range("B" & ActiveCell.Row).Value Then
        If Selection.Rows.Count > 1 Then
                Range("B" & ActiveCell.Row, "B" & ActiveCell.Row + Selection.Rows.Count).Value = Me.lead.Value
        Else
            Range("B" & ActiveCell.Row).Value = UserForm1.lead.Value
        End If
    End If
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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