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.
2Try selecting the entire sheet (click box with the arrow in to the left of "A", and above "1") and then try clear all again.
3I 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.
2If 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.
- Change MATLAB path to where your .xls or .xlsx file is located
>> [~,~,a] = xlsread('yourfile.xls')>> xlswrite('yourfile.xls',a)
Table removed!
Notice I used 'yourfile.xls'. Change this to 'yourfile.xlsx' if your file is a .xlsx file.
Click anywhere in the table.
Tip: This displays the
Table Tools, adding theDesigntab.On the
Designtab, in theToolsgroup, clickConvert 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- Select the whole table.
- Click in the Styles tab
Format Table. - Select at the button
New Table Style.... - 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.
- Highlight the table and copy to clipboard.
- Open temporary worksheet
- Paste as unformatted text.
- Recopy unformatted table back into main document.