+ Reply to Thread
Results 1 to 4 of 4

Save Multiple Checkbox Values

Hybrid View

  1. #1
    Registered User
    Join Date
    03-07-2017
    Location
    Texas
    MS-Off Ver
    Office 2016
    Posts
    39

    Save Multiple Checkbox Values

    Hello, everyone! I'm having some trouble (again) with my code. After closing the UserForm and reopening it, I'd like for it to show the checkboxes that were previously checked for the ActiveCell. Currently, it does return the value of the last checkbox, but not the rest. I was hoping you awesome folks could help. Thanks.

    Private Sub UserForm_Initialize()
    
         Dim n                     As Long
        Dim cellValue             As String
            
        With cbxMM
            .AddItem "MM"
            For n = 1 To 12
                .AddItem Format(n, "00")
            Next
        End With
         
        With cbxDD
            .AddItem "DD"
            For n = 1 To 31
                .AddItem Format(n, "00")
            Next
        End With
        cellValue = ActiveCell.Value2
        If cellValue = "Lost  " Then
            CheckBox8.Value = True
             
        ElseIf cellValue Like "*##/##*" Then
            If Left$(cellValue, 1) = "x" Then
                cbxMM.Value = Mid$(cellValue, 2, 2)
                cbxDD.Value = Mid$(cellValue, 5, 2)
                Select Case True
                Case Right$(cellValue, 3) = " DR"
                    CheckBox4.Value = True
                    cellValue = Left$(cellValue, Len(cellValue) - 3)
                Case Right$(cellValue, 2) = " C"
                    CheckBox5.Value = True
                    cellValue = Left$(cellValue, Len(cellValue) - 2)
                Case R
                Case Else
                    CheckBox2.Value = True
                End Select
                cellValue = Mid$(cellValue, 8)
            Else
                cbxMM.Value = Left$(cellValue, 2)
                cbxDD.Value = Mid$(cellValue, 4, 2)
                Select Case True
                Case Right$(cellValue, 1) = ChrW(8730)
                    CheckBox1.Value = True
                    cellValue = Left$(cellValue, Len(cellValue) - 2)
                Case Right$(cellValue, 3) = " CP"
                    CheckBox6.Value = True
                    cellValue = Left$(cellValue, Len(cellValue) - 3)
                Case Right$(cellValue, 10) = " Cancelled"
                    CheckBox7.Value = True
                    cellValue = Left$(cellValue, Len(cellValue) - 10)
                Case Right$(cellValue, 5) = " TS"
                    CheckBox9.Value = True
                    cellValue = Left$(cellValue, Len(cellValue) - 5)
                Case Else
                    CheckBox3.Value = True
                End Select
                cellValue = Mid$(cellValue, 7)
            End If
            Me.txtCode = cellValue
        End If
    End Sub
    Private Sub btnOK_Click()
    Dim strText As String, strDelimiter As String
    
    
    strDelimiter = " "
    
    
    If cbxDD.Value = "DD" Or cbxMM.Value = "MM" Then
        MsgBox "Please enter both a month and date.", , "Invalid Entry"
        Exit Sub
    End If
    
    
    If CheckBox4.Value = True Then strText = strText & "DR" & strDelimiter
    If CheckBox5.Value = True Then strText = strText & "C" & strDelimiter
    If CheckBox2.Value = True Then strText = strText & strDelimiter
    If CheckBox1.Value = True Then strText = strText & ChrW(8730) & strDelimiter
    If CheckBox3.Value = True Then strText = strText & strDelimiter
    If CheckBox6.Value = True Then strText = strText & "CP" & strDelimiter
    If CheckBox7.Value = True Then strText = strText & "Cancelled" & strDelimiter
    If CheckBox9.Value = True Then strText = strText & "TS" & strDelimiter
    If CheckBox8.Value = True Then strText = strText & "Lost " & strDelimiter
    
    
    strText = Replace(strText, "- -", "-")
    
    
    If Len(strText) > 0 And CheckBox3.Value Or CheckBox6.Value = True Then
        strText = Left(strText, Len(strText) - Len(strDelimiter)) 'remove trailing delimiter
        ActiveCell.Value = cbxMM.Value & "/" & cbxDD.Value & "- " & txtCode.Value & " " & strText
        Unload Me
    ElseIf Len(strText) > 0 And CheckBox1.Value Or CheckBox2.Value Or CheckBox3.Value Or CheckBox4.Value Or CheckBox5.Value Or CheckBox7.Value Or CheckBox9.Value = True Then
        strText = Left(strText, Len(strText) - Len(strDelimiter)) 'remove trailing delimiter
        ActiveCell.Value = cbxMM.Value & "/" & cbxDD.Value & " " & txtCode.Value & " " & strText
        Unload Me
    ElseIf Len(strText) > 0 And CheckBox8.Value = True Then
        ActiveCell.Value = strText
        Unload Me
    Else
        MsgBox "No Status selected.", , "Invalid Entry"
    End If
    
    
    If CheckBox2.Value Or CheckBox4.Value Or CheckBox5.Value = True Then
        ActiveCell.Value = "x" & ActiveCell.Value
    Else
        ActiveCell.Value = ActiveCell.Value
    End If
    End Sub
    
    
    Private Sub btnCancel_Click()
    
    
        Unload Me
        
    End Sub
    
    
    Private Sub btnClear_Click()
    
    
        Call UserForm_Initialize
        
    End Sub

  2. #2
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Re: Save Multiple Checkbox Values

    Good morning cluelessdood

    Userforms won't "remember" data from previous sessions - you can set a default value through VBA for every time they're opened but that's about it.

    What you will need to do is set up a hidden sheet that will store the default values. When the userform is opened, these values are read from your hidden sheet and the userform is populated using these values.
    When the userform is closed, these values are saved back to your hidden sheet.
    These are then saved with the file for the next time the userform is opened.

    HTH

    DominicB

  3. #3
    Registered User
    Join Date
    03-07-2017
    Location
    Texas
    MS-Off Ver
    Office 2016
    Posts
    39

    Re: Save Multiple Checkbox Values

    Quote Originally Posted by dominicb View Post
    Good morning cluelessdood

    Userforms won't "remember" data from previous sessions - you can set a default value through VBA for every time they're opened but that's about it.

    What you will need to do is set up a hidden sheet that will store the default values. When the userform is opened, these values are read from your hidden sheet and the userform is populated using these values.
    When the userform is closed, these values are saved back to your hidden sheet.
    These are then saved with the file for the next time the userform is opened.

    HTH

    DominicB
    I made the hidden sheet, but I'm not really sure how to connect it...

  4. #4
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Re: Save Multiple Checkbox Values

    Hi cluelessdood

    If your hidden sheet is called "Sheet1", in cell A1 type "FALSE" - you don't have to type in uppercase, the cell will recognise it as a Boolean value and do it for you.
    In your UserForm_Initialize module use a line like this for every checkbox :
    CheckBox1.Value = Sheets("Sheet1").Range("A1").Value
    To set the flags in this sheet on exit, just use this command in reverse, thus :
    Sheets("Sheet1").Range("A1").Value = CheckBox1.Value
    HTH

    DominicB

+ 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. Multiple Checkbox values to one cell
    By MSchaffer in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-10-2017, 02:20 PM
  2. [SOLVED] Userform: Have multiple checkbox values populate to one cell
    By ciresuark in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 10-22-2014, 12:44 PM
  3. creating checkbox with multiple values
    By mosslovell in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-05-2014, 11:29 AM
  4. [SOLVED] Sum Multiple Checkbox Values in Single Cell
    By janicesm in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-01-2014, 01:30 PM
  5. How to display values in multiple lines if multiple checkbox's are selected?
    By kjshep in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-10-2012, 10:10 AM
  6. How to save user form checkbox values when opening and closing workbook
    By skfinance in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 02-13-2011, 06:28 PM
  7. Modify Checkbox Value on Save As Box
    By bhastings in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 10-25-2010, 08:55 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