Jul 30 2023 09:50 AM
Need help with an Excel VBA process. Below is a screenshot of the current logic with the intended goal noted in the red box. Can someone assist with helping me set criteria to define the range or rows between a static row (11 - aka RowStart) and one above a flexible end row, with the end row being determined by a cell match?
Copy of file attached as well. Mod in question is "ModCreateNewUserTEST". All other Mods are working as intended and do not need changes.
Jul 30 2023 11:45 AM - edited Jul 30 2023 11:45 AM
That could be
WSN.Range("A11:A" & RowEnd - 1).EntireRow.Select
Do you really need to select those rows? For example, if you want to delete them, you can use
WSN.Range("A11:A" & RowEnd - 1).EntireRow.Delete