#vba #copypaste

  1. K

    How to macro will Unhide all the worksheet except the active sheet

    'This macro will hide all the worksheet except the active sheet Sub HideAllExceptActiveSheet() Dim ws As Worksheet For Each ws In ThisWorkbook.Worksheets If ws.Name <> ActiveSheet.Name Then ws.Visible = xlSheetHidden Next ws End Sub This code its working But We need 'This macro will Unhide all...
  2. K

    how to make hyper link Button ?? when i click down in cell with show "Add New " Button (button is hyperlink)

    how to make hyper link Button ?? when i click down in cell with show "Add New " Button (button is hyperlink) This Invoice Product name Combo box with show Hyper link button appears Out side the combo box, how to possible pleased Need this vba code , (Condition : How to fix same place in range...
  3. J

    Copy data from workbooks in a folder to one master workbook

    Hi. I have data in multiple workbooks in a folder with the same template and I need to extract those circled data into one master workbook as below I have a code to loop thru all the workbooks in the folder but I do not know how to do the data copying/extracting. Thank you for any help!. Sub...
  4. B

    Make a new Format with VBA based on the data

    Hello, I have a problem work with two different type of workbook, it is a bit time consuming if I do it with a manual typing or copy pasting. Is the any Solution to copy data to a certain format with vba code. Note: the first format if Feedmaster## and the 2nd is the target (or copy to new...
  5. O

    VBA Code Timestamp & Username Copy & Paste Method

    Good day all, I have the following VBA code below to help show when a change was made in one of the columns in my Excel spreadsheet as well as the username however, I am finding difficulties when I am testing my VBA code. I can only retrieve the username/time stamp if I double click on each...
  6. C

    Need to copy from sourcesheet to destination sheet only the new data entered based on serial no on the source sheet

    I am totally new to Excel VBA. But I have a requirement to copy some data from let us say sheet1 to sheet2. I have several columns and rows in sheet1 (source sheet). Now I have to copy only Five columns data from within that where "Ferro Manganese" found in particular one coloum and if found...
  7. L

    VBA loop through multiple sheets, if value greater =>12 then copy row to combined sheet

    hey Guys I am having issues with my code. Originally (see original code) I would loop through all sheets and combine data in to one. This worked great. Only 1 sheet had headers (data spill). 'Original code For i = 2 To Sheets.Count Set xRg = Sheets(1).UsedRange If i > 2 Then...
  8. S

    VBA to copy non-sequential columns to new workbook, only unique values

    I'm trying to create a macro which will copy the unique values in Columns F and X from a worksheet (Data) to a new workbook where column C = Yes. Below is copying the entire Data sheet into the new workbook - how do I set the range (rData) to only columns F and X (and only copy a unique value)...
  9. E

    Need VBA help for Excel Database

    Ok....So, I am currently working with an excel database that links client information entries to a Word note file located in the client's digital file. What I'm trying to do is three fold; I'd like to be able to code the "notes" cell on the client's row to auto-populate the next available entry...
  10. W

    Excel VBA: Copy multiple Column of a Table

    I am trying to use VBA coding to copy a table to another table. But I am only interested in copying row 2 to row 20 (minus Header and row 1) to another table. I understand there is a function .databodyrange, but this will copy every data in the table which is not what I am looking for.
  11. J

    Only Allow Copy Paste for Cells with Data Validation

    Hi Everyone, I found this macro which allows me to only allow copy-paste values in order for data validation to work. However, this is only one cell. How can i convert to make it work for a range of cells? Private Sub Worksheet_Change(ByVal Target As Range) Dim IsDV As Boolean If...
  12. K

    Vba copy paste

    Hey guys Im trying to copy some columns from one sheet and paste it onto another. I've come up with a code. Its supposed to copy items of 2 columns from the first worksheet which are "Profile" and "Email Address" and paste it onto the second worksheet on columns "ID"(Column 9 in Excel) and...

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