rfound

  1. J

    Speeding up VBA Vlookup on Worksheet Change

    Hi, i have the following which on worksheet change, looks up the value in column A and outputs the matching data from Data Sheet it uses the FIND vba function but im unsure if theres a better way to do this as it can lag on fast input: Private Sub Worksheet_Change(ByVal Target As Range) Dim...
  2. M

    Need Code Modification

    Hello, I was wondering if someone could look at my code and let me know how to modify this so that when Excel cannot find an entry in the SOURCE workbook, it pastes a zero for the corresponding group/item in the destination workbook (DailyBugCount). Currently, it moves to the next item when...
  3. J

    Why does this worksheet event - Error: Type Mismatch ?

    Private Sub Worksheet_Change(ByVal Target As Range) Dim Item As String Dim NItem As String Dim rFound As Range Lresult = Len(Target) 'Avoid the endless loop: Application.EnableEvents = False Item = Target.Value If Lresult = 10 Then With Sheets("Sheet2") Set rFound =...
  4. E

    Copy Paste Without Opening The .csv file/s

    Hi Guys,, Need your help.. How to make this formula works with .csv file/s. Thank you :) Dim fso As Object Dim fld As Object Dim strSearch As String Dim strPath As String Dim strFile As String Dim wOut As Worksheet Dim wbk As Workbook Dim wks As Worksheet Dim...
  5. E

    Copying Entirerow to Defined Cell

    Hi All: When the criteria is met, I want vba to copy entirerow from external workbook/s to this workbook starting from a selected cell. Example at cell (C2) instead of (A2) as per current formula. :) Dim fso As Object Dim fld As Object Dim strSearch As String Dim strPath As...
  6. N

    Insert new row if conditions are met

    Hi, I am trying to insert a new row based on if the cells in "column E" have "B" in them. I would also like to copy the data in the originial row (Columns C and F) to the newly inserted row (columns C and F). This is what I have so far but it isn't working and I'm not even sure if this is a...
  7. A

    error while using find method

    HI, I'm trying to find repeated text in a particular column ("A2:A21") by using "Find" Method. At '.Find' code, iam getting "Type Mismatch" error. Pls go through the below code and help me. Option Explicit Sub returnrepeatedtextcelladdresses() Dim l As Variant Dim rng, rfound As Range Dim...
  8. rhino4eva

    adapting some code

    Sub punchclock() Dim ws As Worksheet Dim rFound As Range datenow = Format(Now(), "ddd dd") timenow = Format(Now(), "hh:mm") Set ws = Sheets("Sheet1") With ws.Range("c1:f33") On Error Resume Next Set rFound = .Find("*", SearchDirection:=xlPrevious...
  9. A

    Adjust VBA to search in Sub-folders

    Hi all, I have a piece of VBA code which searches through all the .xls files in a folder and looks for a particular word then pulls out other info in the same row if it finds it. It as working great until some "useful" person on my team decided they wanted to reorder the folders and create a...
  10. muhammad susanto

    Macro : Find Data Number in Only Cell Certainty in Multiple Sheets

    hi all... how to modify this code : i want spesicifik find in only cell AD, row 14 Sub SearchAllSheets() Dim ws As Worksheet Dim rFound As Range Dim strName As String On Error Resume Next strName = InputBox("What Name?") If strName = "" Then Exit Sub For Each ws...
  11. A

    VBA: Search all workbooks in folder for text and copy whole row to new sheet

    Hello, I'm trying to put together a VBA button to search all of the workbooks in a specified folder for a user inputted word in any cell (usually column A if that makes it easier). Once found I'd like it to copy the whole row to a new sheet in the Workbook the VBA is run from. Currently I have...

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