Trim the specified number of characters from the start of a string.
'Call this function by passing a string and a number of characters to remove
Function TrimStart(strInputString, number)
TrimStart = Right(strInputString, Len(strInputString) - number)
End Function