Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Resize field columns 1

Status
Not open for further replies.

vlq0n0

MIS
May 25, 2005
1
US
How do you resize multiple columns in a make table query so you don't have to affect your output table manually?
 
You can do this with two queries, but not, I think, with one. Having created the table with the make table query, Alter Table can be used to resize columns. For example:
[tt]strSQL = "Alter table tblTable Alter column Field1 Char(150)"
CurrentDB.Execute strSQL[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top