View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Paul Paul is offline
external usenet poster
 
Posts: 2
Default Using Checkboxes to enable/disable vb

Thanks a lot. it seems that the capitalization made a difference. so
matching on "True" worked, but not "TRUE"... Even though the actual
text is capitalized.

so this is what worked:
If Sheet1.[L7].Value = "True" Then
....code...

Thanks again.

Paul