Column Property Example

This example sets the font to bold in every other column in the visible range on the active worksheet.

For Each col In Spreadsheet1.ActiveSheet.VisibleRange.Columns
    If col.Column Mod 2 = 0 Then col.Font.Bold = True
Next