michaeltsmith93
Board Regular
- Joined
- Sep 29, 2016
- Messages
- 83
Hi,
I'd like to change the following code such that only the Left three characters of the Department value are taken. Left tutorials aren't helping me much.
I'd like to change the following code such that only the Left three characters of the Department value are taken. Left tutorials aren't helping me much.
Code:
With ws
.Cells(ERow, 1).Value = Me.ptmember.Value
.Cells(ERow, 2).Value = Me.StudyRole.Value
.Cells(ERow, 4).Value = Me.MatrixRole.Value
.Cells(ERow, 5).Value = [COLOR=#ff0000]Me.Department.Value[/COLOR]
End With