I am trying to copy the text string that is in a textbox into a variable range. This is what I have been able to come up with but, I can only get it to copy to the first cell in the range, and then I get blanks for the rest. Can anyone tell me what I'm doing wrong?
row_count = Application.WorksheetFunction.CountA(Columns("E:E"))
For Each tbox In Sheets("Exec Summary").TextBoxes
Range("ah3:ah" & row_count).Value = tbox.Text
Next tbox
row_count = Application.WorksheetFunction.CountA(Columns("E:E"))
For Each tbox In Sheets("Exec Summary").TextBoxes
Range("ah3:ah" & row_count).Value = tbox.Text
Next tbox