Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how to maximize or activate a chart using macro
try to use this as your reference:
set c=ActiveDocument.GetSheetObject("CH01")
if c.IsMaximized then
c.Restore
else
c.Maximize
end if