Hello,
In my userform, I've got 18 rows, each with 5 textboxes and one combobox. The first row has them labeled TextBox3 - TextBox7 and ComboBox1.
The next row has them labeled TextBox8 - TextBox12 and ComboBox2 and it goes on in the same sequence.
I need to make a command button so that, when pressed, it makes an entire row visible. Another press of the button should make another row visible and so on. I've got my pseudo-code idea below:
i = 3
k = 1
for every press of commandbutton3,
TextBox(i).Visible To textbox(i + 4).Visible = True
ComboBox(k).Visible = True
i = i + 5
k = k + 1
Bookmarks