I have a text box that auto populates when selecting an item in a combo box. The issue is i have 11 comboboxes that i want to list in the text box but only if it is <"s*". the code i have works but instead of going to the next line it overwrites my last combobox entry?
Dim r As Integer
For r = 1 To 11
If Me("V" & r) < "S *" Then
Me.Summary = Me.Sandwich.Form.cmbSandwich + vbCrLf & Me("V" & r) & vbCrLf
End If
Next r
Dim r As Integer
For r = 1 To 11
If Me("V" & r) < "S *" Then
Me.Summary = Me.Sandwich.Form.cmbSandwich + vbCrLf & Me("V" & r) & vbCrLf
End If
Next r