Hola: Me imagino que te referis a simular la tecla Tab, si es eso hace lo siguiente:
Crea un modulo y agrega el siguiente procedimiento
Sub Tabula(KeyAscii As Integer)
If KeyAscii = 13 Then
SendKeys "{TAB}", True
KeyAscii = 0
End If
End Sub
Luego donde quieras que te simule una Tab llama al procedimiento