cturner1975
New Member
- Joined
- Nov 19, 2010
- Messages
- 11
Hi,
I have a large number of excel files that I need to run certain macros everyday. I have all the macros save on one excel file. Is there a way to select all the excel files that I want to run the macros, rather than me having to open each excel file and run one by one? This will be a big time saver for me.
Can someone please help me with this? Thanks!
Here is one of the marco that I use regularly:
Sub Prop_AB()
Dim LR As Long, cell As Range
LR = Range("A" & Rows.Count).End(xlUp).Row
For Each cell In Range("A1:B" & LR)
cell.Value = StrConv(cell.Value, vbProperCase)
Next cell
End Sub
I have a large number of excel files that I need to run certain macros everyday. I have all the macros save on one excel file. Is there a way to select all the excel files that I want to run the macros, rather than me having to open each excel file and run one by one? This will be a big time saver for me.
Can someone please help me with this? Thanks!
Here is one of the marco that I use regularly:
Sub Prop_AB()
Dim LR As Long, cell As Range
LR = Range("A" & Rows.Count).End(xlUp).Row
For Each cell In Range("A1:B" & LR)
cell.Value = StrConv(cell.Value, vbProperCase)
Next cell
End Sub
Last edited: