VBA, formula to the last row

Patrice74

New Member
Joined
Dec 3, 2018
Messages
10
Hi everybody,

I need a VBA code to concanate cells with the sign "|" to the last row.
Exemple with only 4 rowsbut i ca be more :
Column A:

30602
70012
70311
85244

The result should be i cell B1 : 30602|70012|70311|85244

Thanks i advance :)
Patrice
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
How about
Code:
Sub Patrice74()
   Dim Ary As Variant
   
   Ary = Range("A1", Range("A" & Rows.Count).End(xlUp)).Value2
   Range("B1").Value = Join(Application.Transpose(Ary), "|")
End Sub
 
Upvote 0
Hi
What about

Code:
Sub conts()
     Range("b1") = Join(Application.Transpose(Range("a1:a" & Cells(Rows.Count, 1).End(xlUp).Row)), "|")
End Sub
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top