|
#4
|
||||
|
||||
|
VBA:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If ActiveCell.Characters.Count > 13 Then
string_cell = Left(ActiveCell.Value, 13)
ActiveCell.Value = string_cell
End If
End Sub
__________________
Zitat:
|