Hi,
I've searched through many threads on this board but can't seem to find what I'm specifically looking for. I'm using Excel 2010 on Windows 7 and I have several columns of text (columns A, C, D, F, I, N) on "Sheet1" with cells that could look like the following (text in each cell will vary... so the below is just an example):
'test
''test
' test
' 'test
I would like the cells to become:
test
test
test
test
and I already have some RegEx that can do this: [\w]+((\s|')?)
Each column will always have the same number of rows as each other, but in general, the number of rows will vary. I'm just looking for a sub to run that can make this change for me.
Any help will be appreciated!
I've searched through many threads on this board but can't seem to find what I'm specifically looking for. I'm using Excel 2010 on Windows 7 and I have several columns of text (columns A, C, D, F, I, N) on "Sheet1" with cells that could look like the following (text in each cell will vary... so the below is just an example):
'test
''test
' test
' 'test
I would like the cells to become:
test
test
test
test
and I already have some RegEx that can do this: [\w]+((\s|')?)
Each column will always have the same number of rows as each other, but in general, the number of rows will vary. I'm just looking for a sub to run that can make this change for me.
Any help will be appreciated!