Bonsoir Fronck,
Voici en retour le code modifié
Sub test()
Dim ws2 As Worksheet, a$, b$
Set ws2 = Sheets("Feuil1")
MsgBox ws2.Cells(1, 1)
MsgBox Left("www.excel-pratique.com", 1) 'Renvoie : w
'A partir du 3ième caractère j'en ressort 2 cellule 1ère ligne colonne A
a = Mid(ws2.Cells(1, 1).Value, 3, 2)
'Ressort le 1ier caractère à gauche de la cellule de la 1iére ligne colonne B
b = Left(ws2.Cells(1, 2).Value, 1)
MsgBox a & " / " & b
End Sub