Dingoz2012
Board Regular
- Joined
- Jan 29, 2012
- Messages
- 163
Hi.
Would appreciate any help.
I have a userform with 100 Textboxes on it. The majority of the textboxes will be for the DISPLAY of cell values only. With some being used for the input of new data which the goes onto the worksheet.
My question is. Is there an easier way to get the cell data into the textboxes, than what is currently being done, which is the below.
Any help greatly appreciated.
Would appreciate any help.
I have a userform with 100 Textboxes on it. The majority of the textboxes will be for the DISPLAY of cell values only. With some being used for the input of new data which the goes onto the worksheet.
My question is. Is there an easier way to get the cell data into the textboxes, than what is currently being done, which is the below.
Code:
'Required Number of Components
'These go from textbox1 to 14 Cell range b9 to b22
Textbox1.value = sheets("Data").range("b9").value
Textbox2.value = sheets("Data").range("b10").value
' Already Built
' These go from textbox15 to textbox28 cells c9 to c22
Textbox15.value = sheets("Data").range("c9").value
textbox16.value =sheets("Data").range("c10").value
' Etc Etc, multiple columns, with groupings of data primarily in range B9 to B22, C9 to C22, E9 to E22 etc etc
Any help greatly appreciated.