G
Guest
Can one have a table with up to 400 columns in Access?
David
David
Can one have a table with up to 400 columns in Access?
David
Can one have a table with up to 400 columns in Access?
David
The "raw" data that I need to work with come in the form of a .txt or .csv
file with up to 400 columns or fields. (They are actually downloaded from the
web.)
I would like to write some queries to extract the fields I need, and perhaps
make a number of smaller tables to replace the original table.
I now hear that neither Access nor Excel will handle that many columns.
Any ideas how I may overcome the problem?
I suppose I could download 200 hundred fields at a time.
fredg said:I assume by 'columns' you mean fields.
Read Access Help
Jamie Collins said:Read ISO 11179-1 (Specification and standardization of data elements):
traditional: file / record / field
relational: relation / tuple / attribute
RDBMS: table / row / column
The OP specified 'table' and not a traditional file structure, so your
correction of 'column' to 'field' is erroneous.
Douglas J. Steele said:Guess it depends on your perspective. With DAO, TableDef objects have a
Fields collection, while with ADOX, Table objects have a Columns collection.
That means that the correction is appropriate if you're used to DAO.
david said:I am not sure if this is too much to ask,
but if it is simple enough and if you wouldn't mind,
could you write me a sample illustrative program to extract fields from a
.txt data file with just a few columns named field1, field2, ..etc.?
I would like to learn a llittle bit of programming in VBA, have had some
exposure to it, but have never created my own program in VBA.
This would be an opportunity for me to get started.
Thanks.
david said:I am not sure if this is too much to ask,
but if it is simple enough and if you wouldn't mind,
could you write me a sample illustrative program to extract fields from a
.txt data file with just a few columns named field1, field2, ..etc.?
I would like to learn a llittle bit of programming in VBA, have had some
exposure to it, but have never created my own program in VBA.
This would be an opportunity for me to get started.