[Solved] if column A text “customer account” and column M
The answer to your current problem could be that you are using a reference to the currently active sheet. You came as far as declaring a parent sheet (sh) but never used it as such. You can overcome that with a simple With: Dim sh As Worksheet: Set sh = Sheets(“RAW DATA FILE”) Dim x … Read more