find and copy

  1. Muleskin57

    Selecting a Data Range

    Hello, I'm creating a tool for teachers using a "table" that is formatted as a data range. The last column has a formula that produces a time stamp for entries. I'd like to create a macro that copies all the lines, from cell A2 to the last timestamp in column O to another sheet. So I need to...
  2. J

    FIND a value from active cell in sheet(2),searching in sheet(1) then copy/paste adjacent cells to sheet(2)

    Hello all - I would like to click on a cell in sheet(2) which activates a macro. The macro would take the value from the selected cell in sheet(2) search for it in sheet (1) then cop/paste the found cell and its adjacent cells back to sheet(2) I am having trouble even getting the find toe work...
  3. K

    Separate data in a cell to different cells

    I have a data set in below type in a column. How can I extract & put them into separate columns. <tbody> <tbody> Code:1+Name:Book+Size:200pg+Price:100+Vendor:Abooks </tbody><colgroup><col></colgroup> <strike></strike> <tbody> Code:2+Name:Pen+Size:Standard+Price:10+Vendor:Abooks...
  4. B

    VBA to break data in one column to different columns with dynamic range

    I have a list of data in Column A. Every set of data (down the list) is always started with a "Text##" followed by numbers. My idea is to write a macro to find that "Text", and set it as a start cell, then find the next "Text", and set it as a end cell - 1 (because I only want the data before...
  5. L

    VBA Code to Find a Value on a sheet and copy and paste the values below it

    I am very new at VBA and really need some help with a piece of VBA code. I receive a file from someone that has a Heading (maybe in row 2, row 1, row 3, who knows) The heading labels are at least consistent. I have a master template that I need to copy the data beneath each heading of their...
  6. J

    Finding and copying all cell values that start with "U" using VBA

    This may be a long shot, but if there is an excel board community that can help with this, I'm confident this is the one. I want to write a script that runs through all Excel workbooks in a folder (let's say S:\Folder) and copies all cell values where the first two character are "U1". So, for...
  7. R

    VBA to find a Name

    Hello Everyone, I am new to MrExcel. What I am looking at doing is writing a VBA that will allow me to search for a specific name. Once the name is found I would like to select the entire row that the name is found in. After the cells are selected I would like to copy those cells and send...
  8. D

    Find String in Column A, Cut & Paste to Other Columns

    Hi, I'm using Excel 2007. I'm looking for a VBA macro solution. In Column A, I've got text like this: <b>Column A</b> This is my Year apple boy cat snake This is Year 2003 banana girl leaf elephant 2004 is a good Year dog wolf apple mango I want to find <b>Year</b> including all records...
  9. T

    Modifying to use range

    Hi is to possible to modify the code to use a range of values from another sheet in the workbook instead of a hardcoded value? Sub Macro6() ' ' Macro6 Macro ' ' Columns("E:E").Select Selection.find(What:="value", After:=ActiveCell, LookIn:=xlFormulas _ , LookAt:=xlPart...
  10. T

    Showing the VBA for find function from recording macro

    Hi everyone, I want to modify some code that will use a named range from one sheet to find a row in another sheet and then if found paste that row to a new sheet. I've fallen a the first hurdle as recording didn't display the find. So my question is how to use the find function with this. Aware...
  11. G

    Quick help

    Looking for VBA code to search sheet and find specific text. If found then delete entire column. I also need to be able to cut and paste the entire column (in same sheet) based on text in one cell. I'm sure this is possible, I tried with FindALL & conditional format formulas, but it just keeps...
  12. R

    Búsqueda y copiar valores de filas

    =IF(ISNA(VLOOKUP(B9,$F$2:$F$15720,1,FALSE)) = TRUE, " ", D9) Buenos días, me uno a este foro porque estuve buscando solución a un problema que no logro resolver,ya busque en Internet y en este foro y no encontré algo que me pudiera ayudar por este post. Lo que pasa es lo siguiente: Tengo...
  13. O

    VBA copy data from sheet1 to sheet2 using cross-reference table

    I need to transfer data (values) from Sheet1, listed as Stock #’s to Sheet2, listed as Inventory #’s, using the cross-reference table on Sheet3. The number of columns of data in each row could range from around 10 columns to about 50 columns, so it would be nice if the VBA could copy from the...
  14. J

    find , copy row funcation or highlight row

    I guess i have a spreadsheet , that has a lot of data within in it. At the moment i am looking for different company names So i am searching the company name using the find funcation for example to search for Cola Company So this would give me back all the Cola Company within the...
  15. E

    copy find then paste

    my front work sheet looks like this or something like it <tbody> today's work day 2/21/2014 total bills total people bar sales food sales 10211 1020 205.22 320.95 </tbody> and my work sheet is named "master" then i have 7 other sheets there names are monday,tues,wed,thur,fri,sat,sun...
  16. G

    copy all rows between two values where the first value is variable

    Hello! I have the following problem with a code: I have 2 sheets, named "Sheet1" and "Summary" In the "Sheet1", I have data like: A 1 FCR-E00001 2 something 3 something 4 something 5 FCR-F38346 6 something 7 something 8 FCR-Y02934 etc The letters and...
  17. G

    Finding values between sheets

    Hello guys! This is my first post here, and I'm looking for help to the following issue: I have an excel table with 2 sheets, (Sheet1, Sheet2) Starting from cell A2, I have the values that needs to be found in next sheet (Sheet2) for example: Column A A1: Title A2: A00048 A3: A00098 A4...
  18. L

    Find and Copy

    Hi Experts, Could you please provide me macro coding for Find and copy. Here is an example I have data around 15000 lines. I need segregate the data into 4 accounts. i.e.20310-0000,20320-0000,20110- and 20280. Macro should find macro first line 20310-0000 copy till last line of 20310-0000...
  19. D

    How to find cell value based on other cell value using VBA?

    <colgroup><col span="5"></colgroup><tbody> <tbody> 0 1 2 3 4 5.0 12.0 13.00 14.0 2.00 1.0 4.00 #NA #NA #NA 15.0 3.0 9.0 7.0 17.00 8.0 6.0 11.0 10.0 16.00 </tbody> The top row contain the cell information I am looking for based on rows 2-5. My objective...
  20. K

    Find certain values, then copy part of the line to another sheet

    Hi, I tried to make something to find a certain value (from a userform) in a range, and then copy the line partially to another sheet. Then go forth to the next found item and do the same. But... I cannot seem to make this loop. Anybody can advise...? :confused: With Sheets("Data...

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