データの分析、グラフ作成、および通信のためのツールを備えた Microsoft 表計算ソフトウェアのファミリ。
質問した本人ですが、
メモの印刷については、メモの個数も限定的でしたのでメモを非表示にして印刷し
後でメモを表示しました。
でも 手動で設定出来る事がマクロで出来ないのは不思議ですよね?
Cells.Find(What:="*", After:=ActiveCell, LookIn:=xlComments, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False \_
, MatchByte:=False, SearchFormat:=False).Activate
t\_count = 0
Do Until t\_count = 20
t\_count = t\_count + 1
Cells.FindNext(After:=ActiveCell).Activate
ActiveCell.Comment.Visible = False
Loop
ActiveWindow.SelectedSheets.PrintOut Copies:=1
Cells.Find(What:="\*", After:=ActiveCell, LookIn:=xlComments, LookAt:= \_
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False \_
, MatchByte:=False, SearchFormat:=False).Activate
t\_count = 0
Do Until t\_count = 20
t\_count = t\_count + 1
Cells.FindNext(After:=ActiveCell).Activate
ActiveCell.Comment.Visible = True
Loop