View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
keri keri is offline
external usenet poster
 
Posts: 74
Default Expected End With..

You haven't posted the beginning of your code but the rule is that you
need to have an End With statement for every statement that starts with
"with" in your code.

So if you have 2 lines in your code that start with the word With then
you need 2 lines at the end of your code that say End With.

Someone more experienced should clarify this though.