Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What code may be applied with respect to only ONE sheet, upon which if any
data is pasted (either by Ctrl+V or Enter) only the values are pasted so as to preserve the format and application of Conditional Formatting? -- Best Regards, FARAZ A. QURESHI |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't know what you mean by 'code'. There is no cell format that
restricts a cell to being the recipient of pasted values only. For a macro you might see if this holds water. Copy it into the sheet's module (right click sheet tab and pick View Code): Private Sub Worksheet_Change(ByVal Target As Range) Dim Temp As Variant Temp = Target.Formula With Application .EnableEvents = False .Undo Target.Formula = Temp .EnableEvents = True End With End Sub -- Jim "FARAZ QURESHI" wrote in message ... | What code may be applied with respect to only ONE sheet, upon which if any | data is pasted (either by Ctrl+V or Enter) only the values are pasted so as | to preserve the format and application of Conditional Formatting? | | -- | | Best Regards, | FARAZ A. QURESHI |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
holding worksheet formats when copying/pasting | Excel Discussion (Misc queries) | |||
pasting links and formats | Excel Discussion (Misc queries) | |||
Formats when cutting and pasting | Excel Discussion (Misc queries) | |||
Pasting on Filtered Data Sheets without pasting onto hidden cells | Excel Discussion (Misc queries) | |||
Pasting numbers and formulas without pasting format. | Excel Discussion (Misc queries) |