Sub Sample2()
Dim buf As String, s As Variant, ReturnSheet As Worksheet
''現在のシートを記憶する
Set ReturnSheet = ActiveSheet
Application.ScreenUpdating = False
''すべてのシートを開いてアクティブセルのアドレスを取得する
For Each s In Worksheets
s.Select
buf = buf & s.Name & "のアクティブセル:" & ActiveCell.Address(0, 0) & vbCrLf
Next s
''元のシートに戻る
ReturnSheet.Select
Application.ScreenUpdating = True
MsgBox buf
End Sub