Sub Auto_Open()
' Declare variables/data types...
Dim charValue, Msg, Title As String
Dim cellTotal, cellCounter, stringLength, errorFlag, y As Integer
Dim c, Style, Response, oldStatusBar As Variant
' Show status bar to use for updating progress to user...
If Application.DisplayStatusBar = False Then
Application.DisplayStatusBar = True
End If
' Get the total number of cells to check for erroneous characters...
cellTotal = ActiveSheet.UsedRange.Cells.Count
' Initialize progress counter
cellCounter = 0
' Start routine of checking every cell used in spreadsheet...
For Each c In ActiveSheet.UsedRange
' Increment progress counter by 1...
cellCounter = cellCounter + 1
' Display progress to user...
Application.StatusBar = "Checking cell " & cellCounter & " of " & cellTotal & ", please wait..."
' Get the total number of characters in the cell to use as upper limit of verification loop...
stringLength = Len(c.Value)
' Start the verification loop if the cell contains any data...
If stringLength > 0 Then
' Check each character in the cell for erroneous values...
For y = 1 To stringLength
charValue = Mid(c.Value, y, 1)
Select Case charValue
Case "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", _
"a", "A", "b", "B", "c", "C", "d", "D", "e", "E", _
"f", "F", "g", "G", "h", "H", "i", "I", "j", "J", _
"k", "K", "l", "L", "m", "M", "n", "N", "o", "O", _
"p", "P", "q", "Q", "r", "R", "s", "S", "t", "T", _
"u", "U", "v", "V", "w", "W", "x", "X", "y", "Y", _
"z", "Z", ".", ",", "-", " "
errorFlag = 0
Case Else
errorFlag = 1
' Alert user an erroneous character was found...
' Define user dialog parameters
Msg = "An erroneous character was found in cell " & c.Address & "."
Style = vbOKOnly + vbExclamation
Title = "ASCII Character Verification Error"
' Display user dialog
Response = MsgBox(Msg, Style, Title)
Exit For ' Exit loop if error found.
End Select
Next y
End If ' End of erroneous character verifcation loop.
' Inform user if no erroneous character is found...
If errorFlag = 0 Then
Application.StatusBar = "Cell " & cellCounter & " of " & cellTotal & ", verified as OK..."
End If
Next c ' End of cell data loop.
' Reset status bar...
Application.StatusBar = ""
Application.StatusBar = False
Application.DisplayStatusBar = oldStatusBar
Beep
' Alert user verification is complete...
' Define user dialog parameters
Msg = "ASCII character verification is completed."
Style = vbOKOnly + vbInformation
Title = "ASCII Character Verification Status"
' Display user dialog
Response = MsgBox(Msg, Style, Title)
End Sub
Hope this helps,
Bookmarks