Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 57
Default Excel Cell Validation issue

Excel 2003: Does cell validation only work if the user types in the data, as
opposed to pasting in the data? Put differently, is there a way to use cell
validation so that if a user pastes values into the cell range, the
validation is not overwritten, not expunged?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Excel Cell Validation issue

Validation is pretty much just like formatting. So unless you want to
protect the sheet with the cell locked.

A code solution (although code can be easily disabled)

Private Sub Worksheet_SelectionChange( _
ByVal Target As Range)
Application.CutCopyMode = False
End Sub

use the selection change event for that sheet.

http://www.cpearson.com/excel/events.htm for an overview of events (Chip
Pearson's site)

--
Regards,
Tom Ogilvy


"Perico" wrote in message
...
Excel 2003: Does cell validation only work if the user types in the data,
as
opposed to pasting in the data? Put differently, is there a way to use
cell
validation so that if a user pastes values into the cell range, the
validation is not overwritten, not expunged?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Data Validation issue help request Misop1 Excel Worksheet Functions 0 August 8th 07 08:32 PM
Data Validation issue help request Misop1 Excel Worksheet Functions 0 August 8th 07 08:32 PM
Data Validation Issue? Karba Excel Discussion (Misc queries) 1 June 21st 07 05:00 PM
Data validation issue mevetts Excel Worksheet Functions 4 November 28th 05 02:02 PM
Validation issue Insp Gadget Excel Programming 2 January 23rd 04 05:51 AM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"