View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
murthy murthy is offline
external usenet poster
 
Posts: 24
Default Repetitive block of statements


In my coding, a block of statements get repeated, whenever a control break
occurs, while reading the data.

In COBOL, such block of statements can be put in a separate para and as soon
as the control break occurs, "perform so and so para.." is used. The para is
performed and control gets returned to the statement after the abvoe
'perform' statement.

I searched for an equivalent in Excel VBA, but I couldn't find any. Any
kind suggestions?