C
chacha
Hi
Hopefully somebody can help me with this.
In my spreadsheet the user will enter a number (say 5)
Now I need to insert 5 new rows with a drop down list in column 3
For i = 1 To nMembers
startPoint.Offset(i, 0).EntireRow.Insert
startPoint.Offset(i, 0) = i
startPoint.Offset(i, 3) ' Insert Dropdown list
startPoint.Offset(i, 4) ' Insert Dropdown list
Next i
The data gathered from the user's selection from the list in column 3 will
be user to poplate the drop down list in column 4.
For example the first drop down list will show car manufacturer's (Toyota,
Mazda etc) Then the second will show Yaris, Corolla, Camry... if Toyota is
selected
Any thoughts?
Hopefully somebody can help me with this.
In my spreadsheet the user will enter a number (say 5)
Now I need to insert 5 new rows with a drop down list in column 3
For i = 1 To nMembers
startPoint.Offset(i, 0).EntireRow.Insert
startPoint.Offset(i, 0) = i
startPoint.Offset(i, 3) ' Insert Dropdown list
startPoint.Offset(i, 4) ' Insert Dropdown list
Next i
The data gathered from the user's selection from the list in column 3 will
be user to poplate the drop down list in column 4.
For example the first drop down list will show car manufacturer's (Toyota,
Mazda etc) Then the second will show Yaris, Corolla, Camry... if Toyota is
selected
Any thoughts?