Hide/Unhide an Autoshape or Picture in Excel

Solved/Closed
madambath - May 10, 2010 at 07:23 AM
 jerangkung - Nov 7, 2013 at 04:08 AM
Hi All,

Could anyone tell me the method to Hide/Unhide an Autoshape or Picture in Excel Spreadsheet? I know it is possible through Macro Codes, any other usual ways like hiding Columns, Rows or Sheets?

With regards,
PramodKumar

4 responses

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
May 10, 2010 at 08:16 AM
Use the properties
.visible = true and .visible = false

ActiveSheet.Pictures("Picture 2").Visible = True
7