answersLogoWhite

0

  1. In Excel 2007, after you have created your table, click on the table.
  2. Select the Design tab on the menu ribbon.
  3. In the Table Style Options, click on "Banded Columns"
User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Math & Arithmetic

What is the following is not valid number format category1general2currency3accounting4alignment?

The option that is not a valid number format is "alignment." While "general," "currency," and "accounting" are all recognized number format categories used in spreadsheets and data presentation, "alignment" refers to the positioning of text or numbers within a cell rather than a format for numerical values.


Choose the best option for linear function f?

To choose the best option for a linear function ( f(x) = mx + b ), you should look for the option that includes a constant slope ( m ) and a y-intercept ( b ). The function should exhibit a straight-line graph when plotted, indicating a consistent rate of change. Ensure the selected option meets these criteria based on the given context or specific conditions provided.


What is transform option used in word?

The Transform option in Microsoft Word allows users to change the shape and appearance of text and objects. It can be found in the Format Shape or Format Text Effects menus, enabling effects like 3D rotation, shadow, and reflection. This feature helps enhance the visual appeal of documents by allowing for creative text and graphic presentations. Overall, it's a tool for improving design elements within a Word document.


How do you apply one inch margins?

You have to go to the top of the page where it says "Format" and then scroll down to where you see "page." There, you will find an option that allows you to adjust all of the margins (top, left, bottom, or right).


How do you change 24 hour format to 12 hour format in sonata super fibre digital watch 7982?

To change the time format from 24-hour to 12-hour on the Sonata Super Fibre Digital Watch 7982, press the "Mode" button until you access the time setting mode. Then, look for the option that allows you to toggle between 24-hour and 12-hour formats, typically indicated by "12H" or "24H." Use the "Adjust" or "Set" button to switch the format. Finally, save your settings by pressing the "Mode" button again.

Related Questions

Which option is selected in the Columns dialog box to create multiple columns in only one paragraph of text in a document?

;[p]p ];p ];3.


How do you format a document in three columns?

If you want to format the entire document, click on Select All. If you want to format only part of the document, highlight the section you want to format. From the format menu, select column, then choose three columns. Click OK and observe the new format.


How to unhide hidden columns in a excell worksheet?

You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.You can select the columns around the hidden columns and either widen the cells or pick the Unhide option from the menus or ribbon.


Html pull down menu example for month day and year I would like to get an example on how to write month day and year in HTML form?

# <select name="month" id="month"> # <option value="1" <?PHP if($month==1) echo "selected";?>>January</option> # <option value="2" <?PHP if($month==2) echo "selected";?>>February</option> # <option value="3" <?PHP if($month==3) echo "selected";?>>March</option> # <option value="4" <?PHP if($month==4) echo "selected";?>>April</option> # <option value="5" <?PHP if($month==5) echo "selected";?>>May</option> # <option value="6" <?PHP if($month==6) echo "selected";?>>June</option> # <option value="7" <?PHP if($month==7) echo "selected";?>>July</option> # <option value="8" <?PHP if($month==8) echo "selected";?>>August</option> # <option value="9" <?PHP if($month==9) echo "selected";?>>September</option> # <option value="10" <?PHP if($month==10) echo "selected";?>>October</option> # <option value="11" <?PHP if($month==11) echo "selected";?>>November</option> # <option value="12" <?PHP if($month==12) echo "selected";?>>December</option> # </select> # # <select name="day" id="day"> # <option value="1" <?PHP if($day==1) echo "selected";?>>1</option> # <option value="2" <?PHP if($day==2) echo "selected";?>>2</option> # <option value="3" <?PHP if($day==3) echo "selected";?>>3</option> # <option value="4" <?PHP if($day==4) echo "selected";?>>4</option> # <option value="5" <?PHP if($day==5) echo "selected";?>>5</option> # <option value="6" <?PHP if($day==6) echo "selected";?>>6</option> # <option value="7" <?PHP if($day==7) echo "selected";?>>7</option> # <option value="8" <?PHP if($day==8) echo "selected";?>>8</option> # <option value="9" <?PHP if($day==9) echo "selected";?>>9</option> # <option value="10" <?PHP if($day==10) echo "selected";?>>10</option> # <option value="11" <?PHP if($day==11) echo "selected";?>>11</option> # <option value="12" <?PHP if($day==12) echo "selected";?>>12</option> # <option value="13" <?PHP if($day==13) echo "selected";?>>13</option> # <option value="14" <?PHP if($day==14) echo "selected";?>>14</option> # <option value="15" <?PHP if($day==15) echo "selected";?>>15</option> # <option value="16" <?PHP if($day==16) echo "selected";?>>16</option> # <option value="17" <?PHP if($day==17) echo "selected";?>>17</option> # <option value="18" <?PHP if($day==18) echo "selected";?>>18</option> # <option value="19" <?PHP if($day==19) echo "selected";?>>19</option> # <option value="20" <?PHP if($day==20) echo "selected";?>>20</option> # <option value="21" <?PHP if($day==21) echo "selected";?>>21</option> # <option value="22" <?PHP if($day==22) echo "selected";?>>22</option> # <option value="23" <?PHP if($day==23) echo "selected";?>>23</option> # <option value="24" <?PHP if($day==24) echo "selected";?>>24</option> # <option value="25" <?PHP if($day==25) echo "selected";?>>25</option> # <option value="26" <?PHP if($day==26) echo "selected";?>>26</option> # <option value="27" <?PHP if($day==27) echo "selected";?>>27</option> # <option value="28" <?PHP if($day==28) echo "selected";?>>28</option> # <option value="29" <?PHP if($day==29) echo "selected";?>>29</option> # <option value="30" <?PHP if($day==30) echo "selected";?>>30</option> # <option value="31" <?PHP if($day==31) echo "selected";?>>31</option> # </select> # # <select name="year" id="year"> # <?PHP for($i=date("Y"); $i<=date("Y")+2; $i++) # if($year == $i) # echo "<option value='$i' selected>$i</option>"; # else # echo "<option value='$i'>$i</option>"; # ?> # </select>


Preferred HTML tag for drop down list?

That would be the <select> tag. Example of usage: <select> <option>Option 1 in drop-down list</option> <option selected="selected">Option 2 (selected by default because of the "selected" attribute)</option> <option disabled="disabled">Option 3 (disabled because of the "disabled" attribute)</option> </select>


How do you change a format of the selected cells to accounting?

Select the cells you want. Press Ctrl-1 to open the Format Cells dialog box. Under the Number tab and pick the Accounting option and click OK.


How do you make two column?

Assuming you are talking about Word Processing and Microsoft Word, then first select the text you want in columns. Then go to the Format menu and pick "Columns". From there you can choose how many you want. You will also see the icon that is beside the Columns option, on the Standard toolbar. Using the option on the Format menu will give you more flexibility though. Depending on what view you are in, your text may not appear to be in columns after you have done this. If you are using "Normal View" it will still appear to be in one column, but if you go to Print Layout view or do a Print Preview, you will see the text is in several columns. This also assumes you have enough text to fill one column and start into a second column.


When inserting columns in a newsletter which option allows the columns only to appear after the dateline?

Continuous Break.


How do you parse an Excel column?

Use the Text To Columns option in the Data menu. If you have some data in a column that is comma separated you can select it and with the Text To Columns option you can spread it out to the neighbouring columns, breaking the data at the commas.


What button allows you to color the background of selected cells in Excel?

For Excel 2007, it is the button that looks like a paint can tipped over. You will find it on the Home tab in the Font section. Another option is on the Home tab in the Cells section, under the Format option (Format Cells | Fill).


How do you use the the mini toolbar to apply formatting to text in a cell?

When text is selected in an Excel 2007 document, the "Mini Toolbar" will appear. The "format" option allears here in the same way as it does on the main toolbar. Simply select this option and choose how the text is to be formatted.


How many options can be selected if a frame contains 4 option bottons?

how many options can be selected if a frame contains 4 option buttons