vashon2kool
New Member
- Joined
- Jul 28, 2017
- Messages
- 4
Hello everyone,
So far I know that I can format my table in PowerPoint by going from cell to cell but this takes a while. Does anyone have any tips to apply format to the whole table all at once without looping through cells.
Thanks.
So far I know that I can format my table in PowerPoint by going from cell to cell but this takes a while. Does anyone have any tips to apply format to the whole table all at once without looping through cells.
Thanks.
Code:
For lRow = 1 To inTable.Rows.Count
For lCol = 1 To inTable.Columns.Count
'set margin, font, color of text
With inTable.cell(lRow, lCol).Shape.TextFrame.TextRange.Font
.Size = 6
.Color = RGB(0, 0, 0)
.name = "Arial"
.Bold = msoFalse
End With
Next
Next