A family of Microsoft relational database management systems designed for ease of use.
Hi Michael!,
The definition with TypeGuessRows may help clear up the confusion.
"The number of rows to be checked for the data type. The data type is determined given the maximum number of kinds of data found. If there is a tie, the data type is determined in the following order: Number, Currency, Date, Text, Boolean. If data is encountered that does not match the data type guessed for the column, it is returned as a Null value. On import, if a column has mixed data types, the entire column will be cast according to the ImportMixedTypes setting.
The default number of rows to be checked is 8. Values are of type REG_DWORD."
http://msdn.microsoft.com/en-us/library/bb177610(v=office.12).aspx
In summary, the TypeGuessRows will scan the first 8 records of your excel file. For creating linked tables; if the majority of those 8 records contain numbers, the number datatype will be used. However, if you were importing the Excel file and you had the ImportMixedTypes registry key set to Text; then if any of the first 8 values were Text, the column would be imported as Text.
Regards,
Dennis