answersLogoWhite

0

select a column and then position your cursor on its border and move it; or to achieve automatical width / height, select and double click on its border

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Do you have a table without columns?

You cannot have a table without columns. Columns are what make up the structure of a table. It would be like a house without walls.


Why is the the periodic table arranged into rows and columns?

Because if it was just one row, or just one column then it would not be a table!


Why is the periodic table is arranged into rows and columns?

Because if it was just one row, or just one column then it would not be a table!


What step would you follow to insert a table with 5 lows and 3 columns in your document?

To insert a table with 5 rows and 3 columns into your document, you can typically follow these steps: go to the "Insert" tab in your document editor, find the "Table" option, select the dimensions (5 rows, 3 columns), and insert the table into your document. You can then populate the table cells with your desired content.


What steps would you go through to add a table to a title and content slide?

To add a table to a title and content slide, first, click on the slide where you want to insert the table. Then, navigate to the "Insert" tab in the toolbar and select "Table." Choose the desired number of rows and columns for your table, and it will be inserted into the content area of the slide. Finally, you can adjust the table's size and format as needed to fit your design.


What is Relationship between a primary and a foreign key?

A primary key is one or more colums in a table whose values would uniquely identify a row in that table. A foreign key is a one or more columns in one table that are used to reference rows in another table. In a properly designed 3NF schema, the foreign key columns should correspond to the primary key columns of the table being referenced.


Is it true that in access the columns in a table are calleed records?

No. They are called fields. A row would be a record.


What is a comfortable width for each guest at a table?

i would say a 66cm to 71 cm wide table would be gd


What is a cell in word processing document?

If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.If you have a table in Word, then it is made up of columns and rows, which create cells, similar to cells on a spreadsheet.


What is a systematic arrangement of data usually in rows and columns called?

In information technology / database technology this would be a data table. Conceptually, think of it as a spread sheet. Each row contains a set of columns. The values in the columns usually represent a single instantiation of a entity.


How do you make a brochure on Microsoft office 2007?

By "brochure", we'll assume you me a "tri-fold" brochure: meaning that if you fold the paper in thirds, as you would for putting a letter into an envelope, you have 3 "panels" on each side of the paper. This requires some fairly advanced knowledge of Microsoft Word. And, if you want it printed on both sides of the paper, you will need to experiment with how to turn the paper to print on the second side. There are several approaches you can take, all of which are really to complicated to explain in text, but here goes... 1) Set your page orientation to landscape 2) Set your margins to all be equal, to whatever size you prefer 3) Insert a one row, three column table. This will break your page width into three equal panels. OR, even better if you now how... 3) Insert a one row, five column table. Then make columns 2 and 4 really skinny, and use these columns to represent the "margin" between each panel. So that, columns 1, 3, and 5 will be exactly the desired width for each "panel". 4) if you know how, set the properties of the table to NOT allow the table to automatically adjust to fit contents. (Select the table, pick Table Properties from the Table menu/ribbon, and find the check box to turn off automatic adjust. ) While you are in the Table Properties, you might wish to set the single row to a fixed height (like 10 inches), and the columns to specific width measurements. 5) Now you can type into each panel, and place text, pictures, etc as desired. Take your time, be observant, and be patient, and you will build a really nice brochure!


How do you show table or column contents using the MySQL commands?

To show the contents of a table in MySQL, you can use the SELECT statement. For example, to display all columns from a table named employees, you would run the command SELECT * FROM employees;. If you want to show specific columns, you can specify them, like SELECT first_name, last_name FROM employees;. To view the structure of a table, you can use DESCRIBE table_name; or SHOW COLUMNS FROM table_name;.