how do i add same prefix any text or number to the large datas?

  • Thread starter Thread starter how do i add same prefix any text or num
  • Start date Start date
H

how do i add same prefix any text or num

For ex: In a column 1000 chech no is entered.
100100
100101
100102
I want to add prefix Ch. No. to all 1000 numbers like below
Ch. No: 100100
Ch. No: 100101
How to add this to 1000 of ch. no. which is the shortest way to do this.
 
A1 = 100100
In B1 enter the below formula

= "Ch. No: " & A1

If this post helps click Yes
 
Back
Top