Table Formatting in Excel 2007: How do I remove it?

I've used the new Table Formatting option in Excel 2007. Now I can't remove it. I've dragged the little blue square up to the last cell on the top left, but it just won't go any further. In fact it just won't go at all.

Clear all doesn't remove it. What does? I want my table back! I'm not a beginner with Excel, but this little annoyance has made me feel like on.

Surely there must be some way to remove table format without deleting something or clearing all!

8 Answers

"Convert to Range" should convert it to normal ranges. Right click on a cell in table and select Table -> Convert to Range. You would need to remove the formatting manually.

2

Try selecting the entire sheet (click box with the arrow in to the left of "A", and above "1") and then try clear all again.

3

I was able to pull this off by highlighting the entire table and then right click and choose Format Cells. Then go through and remove colors and borders and any filling and you will effectively remove the table and keep all data intact.

2

If you have MATLAB:

This is really only useful if you use MATLAB often and is usually open. Make sure your Excel file isn't open when attempting this code. Nothing will happen to your data don't worry because the code won't run.

  1. Change MATLAB path to where your .xls or .xlsx file is located
  2. >> [~,~,a] = xlsread('yourfile.xls')
  3. >> xlswrite('yourfile.xls',a)

Table removed!

Notice I used 'yourfile.xls'. Change this to 'yourfile.xlsx' if your file is a .xlsx file.

  1. Click anywhere in the table.

    Tip: This displays the Table Tools, adding the Design tab.

  2. On the Design tab, in the Tools group, click Convert to Range.

Excel Ribbon Image

Note: Table features are no longer available after you convert the table back to a range. For example, the row headers no longer include the sort and filter arrows, and structured references (references that use table names) that were used in formulas turn into regular cell references.

1
  1. Select the whole table.
  2. Click in the Styles tab Format Table.
  3. Select at the button New Table Style....
  4. Select First Column Stripe.

It will create at the top of all the styles a white box Custom style. Click on this and the format you previously had will disappear.

It works for me....

If using Excel 2010: highlight the cells in the table; go to Home / Editing / Clear / Clear Formatting. Then remove the Filter as well.enter image description here

  1. Highlight the table and copy to clipboard.
  2. Open temporary worksheet
  3. Paste as unformatted text.
  4. Recopy unformatted table back into main document.
0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like