signup

New Member
Joined
Feb 15, 2018
Messages
40
Office Version
  1. 2019
Platform
  1. Windows
Hi All,

I have a set of First Names and Last names in my application in below format.


When i am using text to columns, i am getting output as


But, I need output as below :




Can someone help me to get the required output? or else please let me know at least, is it possible or not..!

Thanks in advance..!
 
Last edited by a moderator:
I want to forward this sheet to my team. so i will instruct my team to make sure to copy the date in those particular two cells(Ex: D9:D10)

and i think you misunderstood my point in above post. I requested to remove first name and last name so Output Starts from F9 cell i.e. Concatenated Name. So there is no way to overwrite the original data because Original data in D9:D10 cells and concatenated names output in F9 cell. Did you got my point?

IMP : Can we make this macro to run immediately(automatically) after pasting my second cell data?( i mean without using any short cut or ALT F8)


If you're pasting data into D9:D10 & want the output to start in D9, then it's going to overwrite the original data.

Will you always be pasting the data into the same cells, or could it be anywhere on the sheet?
 
Upvote 0

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
How about this. It needs to go in the sheet module
Code:
Private Sub Worksheet_Change(ByVal Target As Range)

   Dim i As Long, j As Long
   Dim Ary As Variant
   
   If Target.CountLarge > 1 Then Exit Sub
   If Intersect(Target, Range("D10")) Is Nothing Then Exit Sub
   
   Ary = Target.Offset(-1).Resize(2)
   For i = 1 To 2
      For j = 0 To UBound(Split(Ary(i, 1), "/"))
         Target.Offset(j - 1, 2).Resize(1, 1).Value = Split(Ary(1, 1), "/")(j) & " " & Split(Ary(2, 1), "/")(j)
      Next j
   Next i
End Sub
 
Upvote 0
Hi @Fluff

Great It Works perfectly. Thank you so much for your help on this. Our team doing this all conversions manually from last two years. You saved many hours of time for all of our time.

I have another sheet to covert range of selection text to proper case. Can we use these two codes in single document? one is in Sheet1 and another one is Sheet2?

If we can use both codes in single document please advise how can we do that?

Thanks again :)
 
Upvote 0
If you want to convert the names to proper case try
Code:
         Target.Offset(j - 1, 2).Resize(1, 1).Value = Application.Proper(Split(Ary(1, 1), "/")(j)) & " " & Application.Proper(Split(Ary(2, 1), "/")(j))
 
Upvote 0
Hi Fluff,

Can you please shift the output to 3 (or 4) cells down in same column? i tried to change target.offset values but no luck.

Ex: now, as per your code output names starts from F9, Can you please change it to F12 or F13 ?

Thanks,
Signup

How about this. It needs to go in the sheet module
Code:
Private Sub Worksheet_Change(ByVal Target As Range)

   Dim i As Long, j As Long
   Dim Ary As Variant
   
   If Target.CountLarge > 1 Then Exit Sub
   If Intersect(Target, Range("D10")) Is Nothing Then Exit Sub
   
   Ary = Target.Offset(-1).Resize(2)
   For i = 1 To 2
      For j = 0 To UBound(Split(Ary(i, 1), "/"))
         Target.Offset(j - 1, 2).Resize(1, 1).Value = Split(Ary(1, 1), "/")(j) & " " & Split(Ary(2, 1), "/")(j)
      Next j
   Next i
End Sub
 
Upvote 0
No Fluff, I not taking about this code. Its OK to me these output names can be in proper or Upper based on my source text case.

apart from this, I have a macro in another sheet to convert the range of selected text to proper case by clicking on a button. So can i use these both codes in same workbook(one in Sheet 1 & another one in sheet 2). is there any chance like that?

This is the code i amusing now :

Code:
Private Sub CommandButton1_Click()

Dim rng As Range, cell As Range
Set rng = Selection

For Each cell In rng
    If Not cell.HasFormula Then
        cell.Value = WorksheetFunction.Proper(cell.Value)
    End If
Next cell

End Sub

In a same way, what i should modify in above code to change the selected case text to UPPER CASE? i will insert one more button and will place the code for UPPER CASE. Is it ok to do that?

If you want to convert the names to proper case try
Code:
         Target.Offset(j - 1, 2).Resize(1, 1).Value = Application.Proper(Split(Ary(1, 1), "/")(j)) & " " & Application.Proper(Split(Ary(2, 1), "/")(j))
 
Upvote 0
This will start the output in F12
Code:
Private Sub Worksheet_Change(ByVal Target As Range)

   Dim i As Long, j As Long
   Dim Ary As Variant
   
   If Target.CountLarge > 1 Then Exit Sub
   If Intersect(Target, Range("D10")) Is Nothing Then Exit Sub
   
   Ary = Target.Offset(-1).Resize(2)
   For i = 1 To 2
      For j = 0 To UBound(Split(Ary(i, 1), "/"))
         Target.Offset(j + 2, 2).Resize(1, 1).Value = Split(Ary(1, 1), "/")(j) & " " & Split(Ary(2, 1), "/")(j)
      Next j
   Next i
End Sub
and in your other code change this for upper case
Code:
cell.Value = Ucase(cell.Value)
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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