S
Sok Newbie
Hello, I've currently set some check boxes to enter in
text such as "Tech" upon selection into a Control
Source "Word". With the code,
Sub Tech_AfterUpdate()
If Me.Tech = True Then
Me.Word = Me.Word & "Tech, "
End If
EndSub
This code was added for each of the check boxes. However,
I want to add the functionality that text will be taken if
the selection is deselected. Also, I want to delete the
last two characters after all the text has been entered
and replace it with a ".". So it'll get rid of ", " and
replace with a "." at the end. Any suggestions on how to
do any of these?
text such as "Tech" upon selection into a Control
Source "Word". With the code,
Sub Tech_AfterUpdate()
If Me.Tech = True Then
Me.Word = Me.Word & "Tech, "
End If
EndSub
This code was added for each of the check boxes. However,
I want to add the functionality that text will be taken if
the selection is deselected. Also, I want to delete the
last two characters after all the text has been entered
and replace it with a ".". So it'll get rid of ", " and
replace with a "." at the end. Any suggestions on how to
do any of these?