Sometimes you can use the Find dialog and type the character code equivalent.
alt-0010 is the same as Alt-Enter
alt-0009 is the tab
But it didn't work for me for the tab character. But a little macro did:
Option Explicit
Sub testme()
Dim FoundCell As Range
Dim FindWhat As String
FindWhat = vbTab 'chr(9)
With ActiveSheet
Set FoundCell = .Cells.Find(What:=FindWhat, _
After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, _
SearchDirection:=xlNext, MatchCase:=False, _
SearchFormat:=False)
If FoundCell Is Nothing Then
MsgBox "Not found"
Else
MsgBox "found at: " & FoundCell.Address(0, 0)
FoundCell.Activate
End If
End With
End Sub
But Tabs in excel aren't really supported within cells. They don't work like
tabs in Word do.
If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm