[vba]

Sub FormatAndPreview()
Dim sSheetName As String

sSheetName = Application.VLookup(Range("K10").Value, Range("F117:G124"), 2, False)

With Sheets(sSheetName)
If sSheetName <> "" Then

.Rows.AutoFit
.PrintPreview
End If
End With

End Sub
[/vba]