A family of Microsoft relational database management systems designed for ease of use.
Can you show us a screen shot of the Excel file around these few columns. From what i can see, I would suspect and entry in the Credit Union column may have been filled with a lot f spaces, stretching out the column.
What you might try is linking to the spreadsheet (instead of importing) Then run the following query:
SELECT [Credit Union], Len([Credit Union]) AS ColWidth
FROM tble
ORDER by ColWidth Desc;
This can show you if any value in the col is filled with spaces.
Also, as a point of practice, I rarely directly import data. Instead I will link to the import file Then run an APPEND query to add the data to the table. In this way you can make adjustments as needed, For example you can add the Credit Union column with the expression:
ImpCU: Trim([Credit Union])
So even if thyere is extra spaces, they are taken care of.