how do I create a chart with cells that change when clicked on?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to create a chart for a live presentation at a sale. I need each cell
to have different information and when clicked on, have it change to 'sold'
Doesn't matter what program as long as I accomplish it. Any ideas????
 
As Glenna says probably triggers will do this as long as the change is only
until you close (probably?). There's a tutorial here on our site and if you
google there are more out there.http://www.pptalchemy.co.uk/Triggers1.html

If you do want to use vba to make semi permanent changes to the slide be
aware that the vba snippet in the link won't work during a presentation but
only in edit mode. You could use something like in show mode

sub hideme(oshp as Shape)
oshp.visible=false
end sub

to hide the first shape when it is clicked and reveal the "sold" item.
Sometime code using .visible clashes with other animations (a bug?) so its
best to make the slide animation free.
 
If you do want to use vba to make semi permanent changes to the slide be
aware that the vba snippet in the link won't work during a presentation but
only in edit mode.

Oops. Thanks for the catch, John.
 
Back
Top