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:

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
Hi & welcome to MrExcel
How about
Code:
Sub SplitTranspose()

   Dim Hdr As Variant
   Dim Ary As Variant
   Dim i As Long
   
   Hdr = Range("A1:A2")
   Ary = Range("B1:B2")
   Range("A1:B2").Clear
   Range("A1:B1").Value = Hdr
   For i = 1 To 2
      Cells(2, i).Resize(UBound(Split(Ary(i, 1), "/")) + 1).Value = _
         Application.Transpose(Split(Ary(i, 1), "/"))
   Next i
End Sub
 
Upvote 0
Hi Thanks for the reply,

if you don't mind could you please tell me how to use this code?

i have added code when i tried to run macro using ALT- F8 it showing some type mismatch error. do i need to change cell numbers in above code?

debug option showing this as error : Cells(2, i).Resize(UBound(Split(Ary(i, 1), "/")) + 1).Value = _
Application.Transpose(Split(Ary(i, 1), "/"))

Can you please guide me to run the above code.


Hi & welcome to MrExcel
How about
Code:
Sub SplitTranspose()

   Dim Hdr As Variant
   Dim Ary As Variant
   Dim i As Long
   
   Hdr = Range("A1:A2")
   Ary = Range("B1:B2")
   Range("A1:B2").Clear
   Range("A1:B1").Value = Hdr
   For i = 1 To 2
      Cells(2, i).Resize(UBound(Split(Ary(i, 1), "/")) + 1).Value = _
         Application.Transpose(Split(Ary(i, 1), "/"))
   Next i
End Sub
 
Upvote 0
How long are the strings in B1 & B2?
 
Upvote 0
Another option, try this instead
Code:
Sub SplitTranspose()

   Dim Hdr As Variant
   Dim Ary As Variant
   Dim i As Long, j As Long
   
   Hdr = Range("A1:A2")
   Ary = Range("B1:B2")
   Range("A1:B2").Clear
   Range("A1:B1").Value = Hdr
   For i = 1 To 2
      For j = 0 To UBound(Split(Ary(i, 1), "/"))
         Cells(j + 2, i).Value = Split(Ary(i, 1), "/")(j)
      Next j
   Next i
End Sub
 
Upvote 0
Hi @Fluff

Don't know how could i say thanks to you. :) :)

Its really great. its working perfectly for me. However, can you please clarify my doubts on this?

  • Will this work for long names also?
  • I mean do we have any limitation that name should be have below n number of words?

I tried for below names, It works perfectly. (It has 11 names)


<tbody>
</tbody>



The code perfectly working when i paste First Names in B1 Cell and Last Names in B2 cell. Those are at top left corner in document.

If i want to make document look beautiful, I need to paste these names in middle of the document.
Example: 10th and 11th rows or 12th and 13th rows. It maybe C10,C11 or D10 D11

Then what should we need to modify in below code? I tried with replacing B1 with D9 and B2 with D10. I ran the code with keeping names in D9 D10 but i am getting "#N/A" along with names in output. And also output names are starting from A2 B2. Can we modify code for output start from some specifc cells?

This is the output i got after replacing B1B2 with D9D10


and also i would like to know possibilities for concatinating these two output names through this code. Below is the expected output in this case

Expected Output :



I am very happy to be here @Fluff and once again thank you so much for your help ! :) :)


Another option, try this instead
Code:
Sub SplitTranspose()

   Dim Hdr As Variant
   Dim Ary As Variant
   Dim i As Long, j As Long
   
   Hdr = Range("A1:A2")
   Ary = Range("B1:B2")
   Range("A1:B2").Clear
   Range("A1:B1").Value = Hdr
   For i = 1 To 2
      For j = 0 To UBound(Split(Ary(i, 1), "/"))
         Cells(j + 2, i).Value = Split(Ary(i, 1), "/")(j)
      Next j
   Next i
End Sub
 
Last edited by a moderator:
Upvote 0
Note that sometimes posts from new users require Moderator approval before you can see them on the public forums. When this happens, you should see a message to that effect when you try to post it.
Please be patient and do not attempt to post the question again.
I have removed all the extra posts.

This will work regardless of where your data is
Code:
Sub SplitTranspose()

   Dim Ary As Variant
   Dim i As Long, j As Long
   
   Ary = Selection
   Selection.ClearContents
   For i = 1 To 2
      For j = 0 To UBound(Split(Ary(i, 1), "/"))
         Selection.Offset(j, i - 1).Resize(1, 1).Value = Split(Ary(i, 1), "/")(j)
         Selection.Offset(j, 2).Resize(1, 1).Value = Split(Ary(1, 1), "/")(j) & " " & Split(Ary(2, 1), "/")(j)
      Next j
   Next i
End Sub
Just make sure that the 2 cells containing the data are both selected, before running the macro
 
Upvote 0
Hi @Fluff,

Sorry for my multiple posts. I thought i may lost that long reply post so i tried to send in multiple posts as i am not sure about approval.

coming to code yes, it works perfectly but the output is bit confusing as it clears the selection also.
If possible could you please keep the source data? and finally i just need concatenated name.

Ex: If i keep two lines data in D9 D10, output starts from D9 E9 F9. Where F9 is concatenated name.

So finally Can you keep source data and Concatenated name starts from F9 cell as output?

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)

Thanks in advance.:)
 
Upvote 0
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

Forum statistics

Threads
1,214,388
Messages
6,119,226
Members
448,878
Latest member
Da9l87

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