View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_4_] Bob Phillips[_4_] is offline
external usenet poster
 
Posts: 834
Default Calling a module from another module

For Each sh In ActiveWorkbook.Worksheets

Call ResetLastCell(sh)
Next sh

HTH

Bob

"Scott Bass" wrote in message
...
3) If anyone can comment on how to call ResetLastCell for all
worksheets in a workbook that would be great.