I've got a form that when I hit the submit button enters the Notes into a cell. As a part of the notes I have checkboxes for various options. What I'd like to do is add the checkbox values to the end of same cell as the Notes. This is what I have:
If Not IsEmpty(Notes.Text) Then
ws.Range("N" & LastRow).Value = Notes.Text
End If
If TubeAdd.Value = True Then
ws.Range("N" & LastRow).Value = ActiveCell & ", Tubing"
End If
If Snowshoe.Value = True Then
ws.Range("N" & LastRow).Value = ActiveCell & ", Snowshoeing"
End If
If TubeExclusive.Value = True Then
ws.Range("N" & LastRow).Value = ActiveCell & ", Tubing"
End If
If Legacy.Value = True Then
ws.Range("N" & LastRow).Value = ActiveCell & ", Legacy Room"
End If
If NorthAxe.Value = True Then
ws.Range("N" & LastRow).Value = ActiveCell & ", North Axe Room"
End If
If MidMountainLodge.Value = True Then
ws.Range("N" & LastRow).Value = ActiveCell & ", MidMountain Lodge"
End If
If Catering.Value = True Then
ws.Range("N" & LastRow).Value = ActiveCell & ", Catering"
End If
The problem I'm running into is that if multiple checkboxes are selected it only shows the ", *****" of the last selected option. I.E. If there are Notes and Tubing & Catering are selected I only end up getting the result for catering (", Catering"). I need all the data to show up in the same cell.
Help?