Excel to Table failing
Your error message seems to stop at the line calling the function isalpha()
. According to python help isalpha()
returns:
true if all characters in the string are alphabetic and there is at least one character, false otherwise.
So either you have an empty column header (may be its hidden?) or its starting with a number which would be an invalid header for an in_memory table which you are converting to.