addme

  1. E

    VBA Addme

    Hi I have a VBA that i'm able to select records from the userform and add them to a new worksheet, however I need the data to start of D9 how do I go about changing the code for this to happen Dim addme As Range Dim x As Integer Set addme = Sheet1.Cells(Rows.Count...
  2. P

    code to save sheets as separate word files

    I have inherited a spreadsheet which has a number of userforms that have some reasonable coding in behind them. One userform allows the user to click on which teacher they are, and the userform then populates showing which students belong in the class(es) that teacher teaches. The user can...
  3. Z

    ListBox Copying only first selection to worksheet

    All: I have a listbox that is populated by a dynamic range from another sheet. The listbox has (1) command button. Once that command button is selected, it "grabs" the selected lines of record and adds them to a worksheet so those records can be assigned. Below is my code that I am working...
  4. C

    VBA listbox search

    Hi, can some one help me to add search option in user form(search as you type) here is the code Private Sub cmdadd_Click() Dim addme As Range Dim x As Integer Set addme = Sheet1.Cells(Rows.Count, 3).End(xlUp).Offset(1, 0) For x = 0 To Me.lstSelector.ListCount - 1 If...
  5. P

    code to print multiple sheets is printing too quickly

    I have the following code that does several things. Private Sub CommandButton3_Click() Dim Addme As Range Dim x As Integer If IsEmpty(Sheets("PrintTemplate").Range("V49")) Then Set Addme = Sheets("PrintTemplate").Range("V49") Else Set Addme = Sheets("PrintTemplate").Range("V" &...
  6. P

    would like to trim this code

    I have a UserForm ListBox that has two columns. I'm currently using the following code that, when an entry in the ListBox is clicked, the code will send the contents of the left column of the ListBox to PrintTemplate!V49 (and downwards), and the 2nd column information to PrintTemplate!W49 (and...
  7. P

    VBA query

    Here is a code I'm using to ... * choose students from four list tables on a userform * make copies of a template sheet .. each sheet named one of the names found in the range that houses the names of the students chosen from the userform list boxes * print page 1 of each of them * delete the...

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