There is no such thing as a normal style. There is a paragraph style, named Normal, that comes with Word. It is the default paragraph style.
There are (Word 2002 and later) four TYPES of styles: character, paragraph, list and table.
If it is strictly a format you want, making a Table Style is best. There are some quirks to Table styles. And unfortunately, you can NOT build a internal style structure within them. And you can NOT build bullets and numbering within them.
That being said, personally, I have styles for every single element within my tables, including bulleted lists.
However, the easiest thing for
you to do is create the style for what you would like for that column. I duplicated the format, and named it - "MyTableLastCol".
So now you have a style (MyTableLastCol). Simply select the column (or parts thereof) and make it that style. You do that by selecting it from the Styles dropdown. You are done. You can copy and paste to your heart content. The style is attached to the paragraphs within the column.
It is easy to retrofit existing tables.
Make a table heading style (I named mine "MyTableHeading"). It can be whatever format you want.
Running the following code will make every table in the document have the last column formatted as MyTableLastCol, and every first row formatted as MyTableHeading.
Code:
Sub LastColStyles()
Dim oTable As Word.Table
For Each oTable In ActiveDocument.Tables()
oTable.Columns.Last.Select
Selection.Style = "MyTableLastCol"
oTable.Rows(1).Select
Selection.Style = "MyTableHeading"
Next
End Sub
Back to Table styles. You can format almost every aspect of table to whatever you want. Make the right column a different font and size, a different shading; make rows alternate in font and shading; make the last row a different spacing, font bold...whatever you want.
When you want a table formatted like it...on a blank paragraph line, select the table from Styles dropdown...done. A fully formatted table, just as you set it up.
Not only that, but you can set it as the default table. Click the table creating button, it will make whatever size table you want, in the format you want.
The ONLY thing missing, is in fact, the issue you have. Table styles can not set an internal paragraph style. And they do NOT set bullets and numbering. However, using independent styles, as I suggest, works great.
Gerry