I need to add some columns to the attached worksheet and put a “%” in that column for some cells. When I use
Columns(“C:C”).Select ‘insert cols for % signs
Selection.Insert Shift:=xlToRight
for some reason it selects COL B and COL C. That is my first problem.
Next, for each “table”, I have to add a % in the new column for the rows that have text in COLUMN A. So I need a % sign in C10, G10…
Lastly if there is a 100 under a “text” line like on B11, I need to clear the contents of the cell but only in COL B.
Please see Sheet2 for the correct version i’m trying for (i didn’t add all the % signs tho)
I was thinking of finding a startrow and endrow based on the word “Base: ” and “Sigma” and then putting the % signs in each of those “sections” and looping thru but I didn’t get very far. Please help me in my logic. thanks