indi visual
Member
I'm looking to view a live range of cells in a UserForm (where the user can edit the cells on the user form if they want to - where the data they enter will also enter to the actual worksheet).
I've been experimenting with the following:
Private Sub UserForm_Initialize()
Me.Spreadsheet1.Cells.Range("CX950:HF968").Value = _
ThisWorkbook.Worksheets("Sheet1").Range("CX950:HF968").Value
End Sub
I guess I have to first draw the spreadsheet control box on my userform first.
The problem is it's not in my tool box options.
Any help is super appreciated.
I've been experimenting with the following:
Private Sub UserForm_Initialize()
Me.Spreadsheet1.Cells.Range("CX950:HF968").Value = _
ThisWorkbook.Worksheets("Sheet1").Range("CX950:HF968").Value
End Sub
I guess I have to first draw the spreadsheet control box on my userform first.
The problem is it's not in my tool box options.
Any help is super appreciated.