Intialize a checkbook

  • Thread starter Patrick Simonds
  • Start date
P

Patrick Simonds

I want to initialize my userform when it opens. I know how to do this for a
Textbox:

Dim rng
Set rng = Cells(ActiveCell.Row, 1)

'Places data in the userform text boxes if it exists on the spreadsheet

' Misc.
TextBox1.Text = rng(1, 3).Text 'First Name
TextBox2.Text = rng(1, 4).Text 'Last Name

But how do you do this with a Checkbox?

It would be looking at rng(1, 7)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Create a public variable 4
store variables 4
Return to UserForm 2
Stumped 1
TextBoxes and Data Filtering 7
Dim statement 8
Have TextBox display a dollar value 6
UserForm Intialization 3

Top