Function to display column header text

john316swan

Board Regular
Joined
Oct 13, 2016
Messages
66
Office Version
  1. 2019
Platform
  1. Windows
I have a pivot table with data:

Doc 1doc 2doc 3doc 4combine docs
11Doc 1,Doc 3 (=combineDocs(A2:A4))
11Doc 2,Doc 3 (=combineDocs(B2:B4))

<tbody>
</tbody>

I am trying to write a function (combine docs) that combines all documents in 1 string

I found this code online that I modified but I can't figure out how to have the column header value displayed:

Code:
Function combineDocs(workRng As Range, Optional Sign As String = ",") As String
Dim r As Range
Dim OutStr As String


For Each r In workRng
    If r.Text <> "" Then
        OutStr = OutStr & Cells(2, Left(r, 1)).Text & Sign 'note my column header is on row 2
    End If
Next
combineDocs = Left(OutStr, Len(OutStr) - 1)
End Function

Thanks for your help!
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Give this function a try...
Code:
[table="width: 500"]
[tr]
	[td]Function CombineDocs(Rng As Range, Optional Delimiter As String = ",") As String
  CombineDocs = Replace(Replace(Application.Trim(Join(Evaluate("IF(" & Rng.Address & "="""","""",SUBSTITUTE(A1:D1,"" "",CHAR(1)))"), " ")), " ", Delimiter), Chr(1), " ")
End Function[/td]
[/tr]
[/table]
 
Upvote 0
Give this function a try...
Code:
[table="width: 500"]
[tr]
	[td]Function CombineDocs(Rng As Range, Optional Delimiter As String = ",") As String
  CombineDocs = Replace(Replace(Application.Trim(Join(Evaluate("IF(" & Rng.Address & "="""","""",SUBSTITUTE(A1:D1,"" "",CHAR(1)))"), " ")), " ", Delimiter), Chr(1), " ")
End Function[/td]
[/tr]
[/table]
I haven't tested it speedwise, but the following code should be more efficient (hence, ever so slightly quicker) than the function above (probably more understandable too:eek:)...
Code:
[table="width: 500"]
[tr]
	[td]Function CombineDocs(Rng As Range, Optional Delimiter As String = ",") As String
  Dim C As Long, Data As Variant, Header As Variant
  Data = Rng.Value
  Header = Intersect(Rng.EntireColumn, Rows(1)).Value
  For C = 1 To UBound(Data, 2)
    If Len(Data(1, C)) Then CombineDocs = CombineDocs & Delimiter & Header(1, C)
  Next
  CombineDocs = Mid(CombineDocs, Len(Delimiter) + 1)
End Function[/td]
[/tr]
[/table]
 
Upvote 0
Solution
Thanks Rick, I was just responding & I see you posted another code :) The first version worked but it was bound to columns A:D (outlined in my sample table) but the data table I am using is a pivot table that can grow & shrink column width so the 2nd code you gave gives more flexibility. I really appreciate your help & hope to one day be able to contribute as much as you have. Take care!
 
Upvote 0
The first version worked but it was bound to columns A:D (outlined in my sample table)
That is because I forgot to generalize the A1:D1 range. You should still use the second code I posted because, as I said, it should be a tad more efficient, but just to show you, my first code could be (was supposed to have been) general enough to handle a varying input range, here is the code the way I should have posted it...
Code:
[table="width: 500"]
[tr]
	[td]Function CombineDocs(Rng As Range, Optional Delimiter As String = ",") As String
  CombineDocs = Replace(Replace(Application.Trim(Join(Evaluate("IF(" & Rng.Address & "="""","""",SUBSTITUTE(" & Intersect(Rng.EntireColumn, Rows(1)).Address & ","" "",CHAR(1)))"), " ")), " ", Delimiter), Chr(1), " ")
End Function[/td]
[/tr]
[/table]
 
Upvote 0

Forum statistics

Threads
1,215,235
Messages
6,123,792
Members
449,126
Latest member
Greeshma Ravi

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