I have had a troll through and cannot seam to find any answers to a resolution for thew below scenario.
I have multiple text strings with "" in varying locations.Generally up to 1000 rows of which there are text strings withing the "" that I wish to retain.
I would like to generate either VBA or a Macro to leave only the text between specific ""
For example:
Row 1 Remove
&
leaving
Row 2 Remove
&
leaving
Row 3 Remove
& the last
leaving
I would like to have the ability to select specific rows or number of rows and determine the number of leading and trailing
for text to be removed.
Any help greatly appreciated.
I have multiple text strings with "" in varying locations.Generally up to 1000 rows of which there are text strings withing the "" that I wish to retain.
Code:
ENQUIRY-01-01-08-18\W_SC-Lightning Protection\drgs-Low Option\
Code:
ENQUIRY-03-08-08-18\E_SC-Composite Concrete Decking\Specification-Low Option\
Code:
ADDITIONAL INFO-03-14-08-18\L_SC Stairs -ADDITIONAL INFO-03\
I would like to generate either VBA or a Macro to leave only the text between specific ""
For example:
Row 1 Remove
Code:
ENQUIRY-01-01-08-18\
Code:
\drgs-Low Option\
Code:
W_SC-Lightning Protection
Code:
ENQUIRY-03-08-08-18\
Code:
\Specification-Low Option\
Code:
E_SC-Composite Concrete
Decking
Code:
ADDITIONAL INFO-03-14-08-18\
Code:
\
Code:
L_SC Stairs -ADDITIONAL INFO-03
I would like to have the ability to select specific rows or number of rows and determine the number of leading and trailing
Code:
\
Any help greatly appreciated.