Hi,

I have the code below to format and insert text into a table. However... is there any way to alter the appearance of a table when the slideshow is running? What I would like to do eventually is insert a tick when the slideshow is running.

Also - is there a way I could apply this to ALL slides? All slides will be identical.

Many thanks in advance
Jon


With ActivePresentation.Slides(1).Shapes(1).Table
.Cell(1, 1).Shape.TextFrame.TextRange.Text = "hello"
.Cell(1, 2).Shape.Fill.ForeColor.RGB = RGB(111, 131, 68)
End With