Results 1 to 3 of 3

Populating a text area in a user form from an Array???

Threaded View

rreifs68 Populating a text area in a... 01-15-2013, 10:15 PM
arlu1201 Re: Populating a text area in... 01-17-2013, 06:32 AM
rreifs68 Re: Populating a text area in... 01-17-2013, 08:25 AM
  1. #1
    Registered User
    Join Date
    08-16-2012
    Location
    Florida
    MS-Off Ver
    Excel 2016
    Posts
    33

    Populating a text area in a user form from an Array???

    Hello everyone,

    I am building a userform for when I am giving an oral quiz with students. I typically have 5 topics to cover for each quiz. There are 8 quizzes total.

    I started playing around with combo boxes for scores, and have a list with a 0-10 scale that I use for each question that works great. Playing off of that success, I built an 8 wide by 5 high array with all of my topics that I cover for all of the quizzes. I then have a combo box for question 1, another for question 2, etc. I just have to click it, and then pull up the topic from the list. It works great, but I got to thinking that it would be nice if I could just say which quiz it was, and it would put the correct question into a text box for me, so that I could spend my time listening instead of clicking, and maybe even be able to edit the topic.

    I go on to process the values into a comment that looks like:

    We discussed Radioactive Decay (10/10),Half life (0/10),Fission and Fusion (10/10),Renewable Energy (5/10), and Biotechnology (5/10)

    My array looks something like:
    Quiz1 Quiz2 Quiz3 Quiz4 Quiz5 Quiz6 Quiz7 Quiz8
    Q1 Q1 Q1 Q1 Q1 Q1 Q1 Q1
    Q2 Q2 Q2 Q2 Q2 Q2 Q2 Q2
    Q3 Q3 Q3 Q3 Q3 Q3 Q3 Q3
    Q4 Q4 Q4 Q4 Q4 Q4 Q4 Q4
    Q5 Q5 Q5 Q5 Q5 Q5 Q5 Q5

    And I want to pull up the correct Q1, Q2, Q3, Q4, and Q5 depending on the Quiz selected from a combo box. I would like the value for each Q to be in its own (if possible editable) text box.

    Does anyone have any ideas for how to pull that off?

    Here is the code I am currently using:

    Private Sub RecordScores_Click()
    
    Dim Total As Single
    
    
    Set ws = Worksheets("DBAs")
    rRow = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
    
    ws.Cells(rRow, 1).Value = Me.StudentName.Value
    ws.Cells(rRow, 2).Value = Me.DBA.Value
    ws.Cells(rRow, 3).Value = Me.Question1.Value
    ws.Cells(rRow, 4).Value = Me.Score1.Value
    ws.Cells(rRow, 5).Value = Me.Question2.Value
    ws.Cells(rRow, 6).Value = Me.Score2.Value
    ws.Cells(rRow, 7).Value = Me.Question3.Value
    ws.Cells(rRow, 8).Value = Me.Score3.Value
    ws.Cells(rRow, 9).Value = Me.Question4.Value
    ws.Cells(rRow, 10).Value = Me.Score4.Value
    ws.Cells(rRow, 11).Value = Me.Question5.Value
    ws.Cells(rRow, 12).Value = Me.Score5.Value
    ws.Cells(rRow, 13).Value = Now
    ws.Cells(rRow, 14).Value = "Completed"
    
    
    
    Me.StudentName.Value = ""
    Me.DBA.Value = ""
    Me.Question1.Value = ""
    Me.Score1.Value = ""
    Me.Question2.Value = ""
    Me.Score2.Value = ""
    Me.Question3.Value = ""
    Me.Score3.Value = ""
    Me.Question4.Value = ""
    Me.Score4.Value = ""
    Me.Question5.Value = ""
    Me.Score5.Value = ""
    
    
    End Sub
    
    Private Sub Aborted_Click()
    
    
    Set ws = Worksheets("DBAs")
    rRow = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
    
    ws.Cells(rRow, 1).Value = Me.StudentName.Value
    ws.Cells(rRow, 2).Value = Me.DBA.Value
    ws.Cells(rRow, 3).Value = Me.Question1.Value
    ws.Cells(rRow, 4).Value = Me.Score1.Value
    ws.Cells(rRow, 5).Value = Me.Question2.Value
    ws.Cells(rRow, 6).Value = Me.Score2.Value
    ws.Cells(rRow, 7).Value = Me.Question3.Value
    ws.Cells(rRow, 8).Value = Me.Score3.Value
    ws.Cells(rRow, 9).Value = Me.Question4.Value
    ws.Cells(rRow, 10).Value = Me.Score4.Value
    ws.Cells(rRow, 11).Value = Me.Question5.Value
    ws.Cells(rRow, 12).Value = Me.Score5.Value
    ws.Cells(rRow, 13).Value = Now
    ws.Cells(rRow, 14).Value = "Aborted"
    
    Me.StudentName.Value = ""
    Me.DBA.Value = ""
    Me.Question1.Value = ""
    Me.Score1.Value = ""
    Me.Question2.Value = ""
    Me.Score2.Value ""
    Me.Question3.Value = ""
    Me.Score3.Value = ""
    Me.Question4.Value = ""
    Me.Score4.Value = ""
    Me.Question5.Value = ""
    Me.Score5.Value = ""
    Last edited by arlu1201; 01-17-2013 at 06:32 AM.

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