hi....i have the following code...
With WS
.Cells(lRow, 5).Value = Me.Clients.Value
.Cells(lRow, 1).Value = Me.LRHMonth.Value
.Cells(lRow, 2).Value = Me.TIHOUR.Value & Me.TIMIN.Value
.Cells(lRow, 3).Value = Me.TOHOUR.Value & Me.TOMIN.Value
.Cells(lRow, 4).Value = Me.eventdetails.Value
If AMSTARTOptionButton Then
.Cells(lRow, 7).Value = "AM"
ElseIf PMSTARTOptionButton Then
.Cells(lRow, 7).Value = "PM"
End If
If AMENDOptionButton Then
.Cells(lRow, 9).Value = "AM"
ElseIf PMENDOptionButton Then
.Cells(lRow, 9).Value = "PM"
End If
End With
It works fine....however i would to concatenate this
.Cells(lRow, 2).Value = Me.TIHOUR.Value & Me.TIMIN.Value
with this
If AMSTARTOptionButton Then
.Cells(lRow, 7).Value = "AM"
ElseIf PMSTARTOptionButton Then
.Cells(lRow, 7).Value = "PM"
into the same cell....but I don't know how....can someone show me? Thanks in advance...you guys always have the answers
Bookmarks