I need to know if my request is possible or look for another way - User Form

Sonyafm

New Member
Joined
Mar 3, 2015
Messages
18
Is it possible have a command button that adds more boxes with the code below the existing ones? The user form has 3 rows, but it needs to have the ability to add more, since the project can have 40 jobs.

User Form to create a budget.,
It contains the following boxes like on a row, one next to each other with the labels
"Job Title", "Hours", "Hour Rate", "Total Amount"

Job Title is a combo box an the others are Text box

The user picks the job title from the combo box and the Rate field is populated using the following
code:

Private Sub CommandButton1_Click()

Dim lookupm As Range
'Lookup values based on first control
Set lookupm = Range("BB:CC")
With Me
.URateV = Application.WorksheetFunction.Vlookup(Me.JobTV1, Worksheets("Job title PR ").Range("lookupm"), 2, 0)

End With
End Sub
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)

Forum statistics

Threads
1,215,676
Messages
6,126,165
Members
449,295
Latest member
DSBerry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top