View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
stevebriz stevebriz is offline
external usenet poster
 
Posts: 195
Default How do I "if statement"

change If c < 100 Then Next Counter
to:
-------------------------------------------------
If c < 100 Then goto NextCounter
------------------------------------------------

and the at your Next Counter
make it:
--------------------
NextCounter:
----------------------------
(note the : at the end )