View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
DM Unseen DM Unseen is offline
external usenet poster
 
Posts: 233
Default Worksheet Custom Properties

Rick

this should be

Function Data_Appears_Valid(Check_Sheet As Sheet1) As Boolean

where sheet1 is the *codename* for the sheet with the property get/set

This is correct because it actually prevents you from passing an
illegal sheet(i.e a sheet without the property) to this function;)

DM Unseen