A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi ScottFH,
So you could use code like this?
Sub Do100Times()
For i = 1 To 100
Workbooks.Open "c:\PathToB\B.xlsm"
'Do something here, like set up input values
Application.Run "'B.xlsm'!B.CALC"
'We return here when macro B.CALC has finished completely
'Do something with result?
Workbooks("B.xlsm").Close False 'Set to True to save changes
Next
End Sub