Macro to copy entire row to next workbook
Solved/Closed
Related:
- Macro to copy entire row to next workbook
- Saints row 2 cheats - Guide
- How to delete a row in a table in word - Guide
- Spell number in excel without macro - Guide
- Run macro on opening workbook - Guide
- Excel macro to create new sheet based on value in cells - Guide
2 responses
jymie
In your code replace
with
or simply
In your code replace
If Target = "X" Then
with
If LCase(Target) = "x" Then
or simply
If Target = "X" Or Target = "x" Then
Does the big X mean something else? You could try to switch CASE, or maybe do cell.value.lower, as in LOWER(B1)
Nov 30, 2016 at 08:54 PM
Dec 1, 2016 at 05:32 PM