Using the keyboard & mouse I am able to select multiple non-contiguous cells in a table and change properties such as font size & color and cell shading. I can also select multiple columns (contiguous, have not tried non-contiguous). I cannot find a way to do it in VBA and record macro captures nothing.
My objective is simply to shade cell(1,1) through cell(x,y) one color and cells after that another color. I can't get Word ranges to work for me because they apparently go first by row then by column.
I have a 4 column X 20 row table (for printing labels). If the 1st 2 cols and half of col 3 have been printed, I would like to denote that by having those cells in the table one shade and the bottom half (rows 11-20) of column 3 and all of col 4 a different shade. I currently accomplish it by looping through all cells in the table and using row & col indices with If THEN ELSE, but there must be a more efficient way.
I know it would be easier if I would use rows first then columns (and that's what I'm doing now), but it irritates me that I can't do something in VBA that I can do manually.
The real situation is slightly more complex in that there can be 2 different label types on the sheet with different text and different pictures. Any help will be greatly appreciated