J
Jeff Ciaccio
I have a userform with textboxes in Excel 2000.
1) If you want to specify a certain cell in a certain worksheet, can you set
this in the properties, or must this be done with code? I tried sheet1!B1,
but it would not accept this.
2) Does the controlSource property work both ways? In other words, does a
change in that textBox change the cell AND does changing the cell also
change the textBox?
3) If data validation is set up in a cell, and the controlSource is set to
that cell, will the validation pass through to the user form? If not, will
something like this work?
Private Sub textBox1_Change()
Range [b1] = textBox1.value ' Or will it simply default to .value
if left off?
End Sub
Thanks!!
1) If you want to specify a certain cell in a certain worksheet, can you set
this in the properties, or must this be done with code? I tried sheet1!B1,
but it would not accept this.
2) Does the controlSource property work both ways? In other words, does a
change in that textBox change the cell AND does changing the cell also
change the textBox?
3) If data validation is set up in a cell, and the controlSource is set to
that cell, will the validation pass through to the user form? If not, will
something like this work?
Private Sub textBox1_Change()
Range [b1] = textBox1.value ' Or will it simply default to .value
if left off?
End Sub
Thanks!!