View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Martin Lawrence Martin Lawrence is offline
external usenet poster
 
Posts: 2
Default Excel macro help

I have an excel macro with the following code:

Sub ITEM_COUNT()
Range("c10").Select
Dim fso
Dim fol
Dim subfol
Set fso = CreateObject("Scripting.FileSystemObject")
Set fol = fso.getfolder("c:\" & Range("c10").Text)
Set subfol = fol.subfolders
sc = subfol.Count
With ActiveSheet
Range("c10").Offset(0, 3) = sc
End With

End Sub

This code takes what is written in cell C10(base folder name) and counts
the number of subfolders in it and places the count in cell F10. What I
would like to do now is do the same thing on the next rows(ie. C11, C12,
C13, etc...)and place the subfolder count in its respective cell in
column F.

Thanks, Martin

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!