View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
guy guy is offline
external usenet poster
 
Posts: 12
Default Do while loop error....

Thanks!!
"Jim Cone"
...
This line ...
If Len(Range("E" & j).Value) 0 Then
Should be ...
If Len(Range("E" & j).Value) = 0 Then
--
Jim Cone