ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How can colour of cell shading be fixed to one colour (https://www.excelbanter.com/excel-discussion-misc-queries/203514-how-can-colour-cell-shading-fixed-one-colour.html)

Tabrez

How can colour of cell shading be fixed to one colour
 
How can colour of cell shading be fixed to one colour and it does not changes
when new contents are pasted in that cell.

nastech

How can colour of cell shading be fixed to one colour
 
unless you get someone to program it for you.. repost ask for script..
otherwise have simple answers:
- right click cell(s), paste-special values
- all cells start with same / no formatting
- smallest equation / formula for format I have found, for wanting fomatted
cell:
=0=0
=COUNTA(F9)=1


"Tabrez" wrote:

How can colour of cell shading be fixed to one colour and it does not changes
when new contents are pasted in that cell.


Gord Dibben

How can colour of cell shading be fixed to one colour
 
You could use this event code to retain the Formatting of the target cells.

Note: does not work if cells are CUT and pasted

Private Sub Worksheet_Change(ByVal Target As Range)
'retain formatting when a cell is copied over
Dim myValue
With Application
.EnableEvents = False
myValue = Target.Value
.Undo
Target = myValue
.EnableEvents = True
End With
End Sub

Right-click on the sheet tab and "View Code". Copy/paste the code into that
sheet module.

Alt + q to return to the Excel window.


Gord Dibben MS Excel MVP

On Tue, 23 Sep 2008 03:00:01 -0700, Tabrez
wrote:

How can colour of cell shading be fixed to one colour and it does not changes
when new contents are pasted in that cell.




All times are GMT +1. The time now is 03:02 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com