View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
MPR MPR is offline
external usenet poster
 
Posts: 3
Default data validation and copy/paste.......

Have defined multiple cells with (varying) length validation rules....as
noted in other threads, data validation is not enforced when user populates
with copy/paste....since copy/paste does trgger "worksheet change" event, how
can I invoke the cells "defined" validation routine from within
"Worksheet_Change"?
My preference is to leverage the cells defined validation settings to avoid
writing individualized subroutines/logic per cell, per worksheet.....

I know using "Worksheet.CircleInvalid" does perform validation of the cells
in defined range, because the invalid ones are "circled".....problem is,
circling cell doesn't "enforce" validation restrictions.

Any/all help is greatly appreciated....

MPR