K
K
Kevin Kostner2016-12-29 12:32:18
excel
Kevin Kostner, 2016-12-29 12:32:18

How to bulk rename rows in Excel?

There is a file with 99800 lines. in two columns there are links to sharefile with names like:
CSHH100
CSHH101
CSHH102
CSHH103
CSHH104
CSHH105
CSHH106 etc.
you need to add the .xls file extension at the end ...
How can I do this? \u003d CONCATENATE is not suitable, I need it on the same line, apparently I need to write a macro, but I am not good at this, please help

Answer the question

In order to leave comments, you need to log in

2 answer(s)
K
Kevin Kostner, 2016-12-29
@zeroeight88

Sub InsertStuffAfter()
Dim cell
For Each cell In Selection
cell.Value = cell.Value & ".xls"
Next cell
End Sub
UPD: found, issue closed

A
Anton Kiselyov, 2017-01-06
@zamboga

And you can also "link" in any free column, and then insert "values" into the desired column.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question