![]() |
How to use "CONCATENATE" function in VBA
Hello
How can I do something like this I want to add to all cells in range Range("A:A").SpecialCells(xlCellTypeConstants) a prefix string like UT_ for example. I know there is a "character" but how i can use it for ma Range ____A_____B____ 1 | UT_string | | 2 | UT_string | | 3 | UT_string | | 4 | UT_string | | ........................... 40| UT_string | | 41| | | Thanks for response |
How to use "CONCATENATE" function in VBA
if i understand correctly, maybe something like this
Sub addtext() Dim lastrow As Long Dim cell As Range Dim rng As Range lastrow = Worksheets("Sheet1").Cells(Rows.Count, "A").End(xlUp).Row Set rng = Range("A1:A" & lastrow) For Each cell In rng.Cells cell.Value = "UT_" & cell.Value Next cell End Sub -- Gary wrote in message oups.com... Hello How can I do something like this I want to add to all cells in range Range("A:A").SpecialCells(xlCellTypeConstants) a prefix string like UT_ for example. I know there is a "character" but how i can use it for ma Range ____A_____B____ 1 | UT_string | | 2 | UT_string | | 3 | UT_string | | 4 | UT_string | | .......................... 40| UT_string | | 41| | | Thanks for response |
All times are GMT +1. The time now is 01:52 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com