data in lots of cells

andrewrgd

Board Regular
Joined
Dec 30, 2004
Messages
78
I am designing a staff roster with staff names in cells D9:M32. Is there anyway I can dump all the names into a single cell on another sheet?

Thanks!
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi

UDF
Press Alt+F11 to activate VBE and insert standard module then paste the code
Code:
Public Function conc_name(rng As Range, spr As String) As String
Dim r As Range, x As String
    For Each r In rng
        If Not IsEmpty(r) Then
            x = x & r.Text & spr
        End If
    Next
    x = Left(x, Len(x) - Len(spr))
    conc_name = x
End Function
use:

=conc_name(yourRange,"separate string")
where your range would be D9:M32 and separate string would be like " - "
will display with separate string at the end of each name

hope this helps
jindon
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,425
Members
448,961
Latest member
nzskater

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