I have a spreadsheet that, someone else made, which acts as a countdown timer. I would like to change the Chart Object pictures from the SI Swimsuit to pictures of home. I cannot, for the life of me, figure out how to add multiple pictures as a chart object, much less have it change with the VBA code below. I have tried searching these forums and the web as a whole, but with no success. More than likely I was looking for the wrong stuff. Any help would be greatly appreciated.
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o> </o>
<o> </o>
Thanks in advance
-Huey
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o> </o>
Code:
Private Sub Workbook_Open()
Sheets("Sheet1").ChartObjects.Visible = False
x = Day(Now())
Sheets("Sheet1").ChartObjects(x).Visible = True
End Sub
Thanks in advance
-Huey