VBA - Concatenate UDF

Fixed

Board Regular
Joined
Apr 28, 2017
Messages
95
Hello!

I'm trying to develop the concatenate UDF, that should concatenate values in 2 columns for each row:

Code:
Function ConcatData(a As Integer, b As Integer) As Variant
For i = 1 To Cells(Rows.Count, a).End(xlUp).Row
    ConcatData = Cells(i, a).Value & " " & Cells(i, b).Value
Next i
End Function

A
B
C (UDF)
C (correct value)
C (incorrect value)<strike></strike>
Ford
Escort
=ConcatData<strike></strike>(1,2)
Ford Escort
Ford Escort<strike></strike>
Ford
Mustang
=ConcatData<strike></strike>(1,2)<strike></strike>
Ford Mustang
Ford Escort<strike></strike>

<tbody>
</tbody>

In column "C (correct value)" - the values I want to get, in column "C (incorrect value)<strike></strike>" - the values I getting now.

I need your advise.
Thank you in advance.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Might I ask why use a UDF in place of the defined CONCATENATE() function? Is there a reason you are needing to use a column reference number instead of just referring directly to the range?
 
Upvote 0
Try this:-
Place in "C1", select "A1" for the "Rng", and drag down.
Code:
Function ConcatData(rng) As String
ConcatData = rng & " " & rng.Offset(, 1).Value
End Function
 
Upvote 0
Might I ask why use a UDF in place of the defined CONCATENATE() function? Is there a reason you are needing to use a column reference number instead of just referring directly to the range?

1. I want to use it in another UDF.
2. There are too many parameters and I want just to set the column number (or character - "A" for example) in the code.
 
Upvote 0
Thanks, MickG, it works good, but I can set just number of column, or name of column ("A"), or range ("A:A").
I'm sorry I didn't tell it earlier.
 
Upvote 0
I think we need the bigger picture to understand the context of the request. As a UDF, it is not row-aware. You could add an extra argument which you enter the row number or range reference (to get the row number from), which would fix your issue, however I'm not sure if it would be best practice.

For example:

Function ConcatData(a As Integer, b As Integer, r as integer) As Variant
ConcatData = Cells(r, a).Value & " " & Cells(r, b).Value
End Function

or

Function ConcatData(a As Integer, b As Integer, rng as Range) As Variant
ConcatData = Cells(rng.Row, a).Value & " " & Cells(rng.Row, b).Value
End Function
 
Upvote 0
As a UDF, it is not row-aware.
It can be though by using Application.Caller...
Code:
[table="width: 500"]
[tr]
	[td]Function ConcatData(FirstCol As Variant, SecondCol As Variant) As String
  ConcatData = Cells(Application.Caller.Row, FirstCol) & " " & Cells(Application.Caller.Row, SecondCol)
End Function[/td]
[/tr]
[/table]
 
Upvote 0
It can be though by using Application.Caller...
Code:
[table="width: 500"]
[tr]
	[td]Function ConcatData(FirstCol As Variant, SecondCol As Variant) As String
  ConcatData = Cells(Application.Caller.Row, FirstCol) & " " & Cells(Application.Caller.Row, SecondCol)
End Function[/td]
[/tr]
[/table]

Google has failed me again! Thanks for the tip, Rick. I had thought they COULD be, but after a handful of Googling, I wasn't finding anything.
 
Upvote 0
Google has failed me again! Thanks for the tip, Rick. I had thought they COULD be, but after a handful of Googling, I wasn't finding anything.
You are welcome for the tip. As for Google... maybe 15 or so years ago, I could find anything I searched for, but somewhere along the line Google changed it search engine and I can barely find what I look for even when I know it is there. Now Google insists on showing me everything including the ******* sink even when those items are just barely related to what I was looking for.
 
Upvote 0

Forum statistics

Threads
1,215,487
Messages
6,125,073
Members
449,205
Latest member
Healthydogs

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