Function LowerCase(str As String) As String
Try
LowerCase = LCase(str)
Catch ex As Exception
LowerCase = str
End Try
End Function
Validation scripting guide
Back to scripting overview
Function LowerCase(str As String) As String
Try
LowerCase = LCase(str)
Catch ex As Exception
LowerCase = str
End Try
End Function