thanks for replying...
i am trying to import data from an excel file to an existing table in access using below VBA code. The excel file has around 204 columns 2000 rows currently. I am getting trucation error in last four columns ie. 201, 202, 203 & 204 column.The data type for these column is declared as "short Text"
Private Sub Command452_Click()
DoCmd.TransferSpreadsheet transfertype:=acImport, tablename:="APPS+CC - Digital Data", FileName:="C:/APPSCC.xlsx", HasFieldNames:=True
Command451.Enabled = True
Command451.SetFocus
Command452.Enabled = False
End Sub