Too many cell formats

Migasi

New Member
Joined
Oct 28, 2015
Messages
12
Hi,

I have been experiencing this issue today and I do not know what I have done to cause it. Could you help me resolve it?

I started a new Excel Workbook with one spread sheet and then copy and paste a few columns from another spread sheet to this new spread sheet. There are no formulas/functions in both spread sheets - just names and dates.

First I was not able to CTRL C and CTRL V from one spread sheet to another. The error message was "Too many cell formats". I got around this by right clicking and chose to paste to destination format.

Next, when I tried to highlight a cell using the "bucket" icon located at the top right ribbon, I get a warning message "Too many different formats". Column A is Text format, columns B to AB are all date formats dd/mm/yy.

What is causing this issue and how can I resolve it?

Many thanks

Regards,

Migasi
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Welcome to the forum. :)

Try running this:
Code:
Sub CleanStyles()
    Dim oStyle As Style
    
    For Each oStyle In ActiveWorkbook.Styles
        If Not oStyle.BuiltIn Then oStyle.Delete
    Next oStyle
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,971
Members
452,371
Latest member
Frana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top