+ Reply to Thread
Results 1 to 11 of 11

Userform two way issue

Hybrid View

  1. #1
    Registered User
    Join Date
    02-11-2014
    Location
    England
    MS-Off Ver
    Office 365
    Posts
    61

    Userform two way issue

    Hey Team Excel!

    I've created a userform in VB that can populate a table, but my question is how can I make this a two way thing?

    This is what populates the table when I press okay.

    Private Sub OkayButton_Click()
    
    Dim emptyRow As Long
    
    'Make Schedule Sheet active
    Sheets("Schedule").Activate
    
    'Determine emptyRow
    emptyRow = WorksheetFunction.CountA(Range("A:A")) + 1
    
    'Transfer information
    Cells(emptyRow, 1).Value = Format(DateBox.Value, "ddmmyy")
    Cells(emptyRow, 2).Value = Format(DateBox.Value, "dd/mm/yy")
    Cells(emptyRow, 3).Value = ONAMBox.Value
    Cells(emptyRow, 4).Value = BRBox.Value
    Cells(emptyRow, 5).Value = DABox.Value
    Cells(emptyRow, 6).Value = NIBox.Value
    Cells(emptyRow, 7).Value = ONPMBox.Value
    
    End Sub
    This is the userform.

    userform example.png

    So at the moment I can basically add multiple entries of the same date, rather than it being interactive.

    Anyone got any thoughts?

    Thanks in advance.

  2. #2
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,930

    Re: Userform two way issue

    Any chance you could post your workbook?
    Far easier to provide a solution if we don't have to recreate it.


    BSB

  3. #3
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: Userform two way issue

    What does "make this a two way thing?" mean to you? Be more specific.

  4. #4
    Registered User
    Join Date
    02-11-2014
    Location
    England
    MS-Off Ver
    Office 365
    Posts
    61

    Re: Userform two way issue

    Quote Originally Posted by stnkynts View Post
    What does "make this a two way thing?" mean to you? Be more specific.
    Sorry that is a bit vague I suppose. If I scroll to a date in the userform for example, and that date is already in the table, then I want the boxes in the userform to correspond to that date. I want to be able to change these if necessary, or still add new ones as it can do now.


    Using my example from my initial post, my userform drop boxes should all have "Sian" in them.

  5. #5
    Registered User
    Join Date
    02-11-2014
    Location
    England
    MS-Off Ver
    Office 365
    Posts
    61

    Re: Userform two way issue

    I've had to delete one of the sheets to make the file fit, but it's not needed for the task I'm working on!

    It's the schedule sheet where the table is.
    Attached Files Attached Files

  6. #6
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,930

    Re: Userform two way issue

    Right, I think this is what you mean. I've added a few bits to the code and incorporated a line or two of yours in the new bits.
    I've marked the bits I've added in blocks starting and ending with a row of *********'s (you'll see what I mean).

    You may have to tinker with it a little as on my setup the dates populate as dd/mm/yy and the example data you have in the form are in mm/dd/yy format.

    If you need any of it explaining (or if I've completely missed the point) let me know.

    BSB
    Attached Files Attached Files
    Last edited by BadlySpelledBuoy; 12-26-2014 at 07:49 PM.

  7. #7
    Valued Forum Contributor fredlo2010's Avatar
    Join Date
    07-04-2012
    Location
    Miami, United States
    MS-Off Ver
    Excel 365
    Posts
    762

    Re: Userform two way issue

    Hello,

    This is my try for this. Read my comments. I hope this will help you.

    Thanks

    KVS Version 4.xlsm

  8. #8
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: Userform two way issue

    Might have to change Userform1.Show in module2 to Userform2 or frmSchedule
    1N73LL1G3NC3 15 7H3 4B1L17Y 70 4D4P7 70 CH4NG3 - 573PH3N H4WK1NG
    You don't have to add Rep if I have helped you out (but it would be nice), but please mark the thread as SOLVED if your issue is resolved.

    Tom

  9. #9
    Valued Forum Contributor fredlo2010's Avatar
    Join Date
    07-04-2012
    Location
    Miami, United States
    MS-Off Ver
    Excel 365
    Posts
    762

    Re: Userform two way issue

    Quote Originally Posted by gmr4evr1 View Post
    Might have to change Userform1.Show in module2 to Userform2 or frmSchedule
    Excellent catch. Thanks

    This is the updated workbook.

    KVS Version 4.xlsm

  10. #10
    Registered User
    Join Date
    02-11-2014
    Location
    England
    MS-Off Ver
    Office 365
    Posts
    61

    Re: Userform two way issue

    Thank you both! That's exactly what I was looking for.

    The level of help on this forum is incredible.

  11. #11
    Valued Forum Contributor fredlo2010's Avatar
    Join Date
    07-04-2012
    Location
    Miami, United States
    MS-Off Ver
    Excel 365
    Posts
    762

    Re: Userform two way issue

    I am glad I was able to help

+ 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. Userform Tab Issue
    By kortex in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 10-18-2012, 02:28 PM
  2. macro - userform issue
    By jw01 in forum Excel General
    Replies: 3
    Last Post: 12-09-2010, 02:21 AM
  3. UserForm issue
    By Bob@Sun in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-27-2010, 01:07 PM
  4. UserForm Issue
    By Thomas in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-10-2006, 09:50 AM
  5. Userform Issue
    By Bill in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-21-2006, 10:30 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