move all text after first word to next cell if applicable

bmarion91

New Member
Joined
Jan 3, 2019
Messages
2
I have an acronym list with 2800 rows populated but some of them have both the acronym and the expansion in the first cell.

Is there a formula I can use that will let me move all text after the first space into the cell directly to the right?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Hi bmarion91,

Welcome to MrExcel!!

Here's one way (just change the cell reference to suit):

=MID(A2,SEARCH(" ",A2)+1,LEN(A2)-SEARCH(" ",A2))

Regards,

Robert
 
Upvote 0
Here's one way (just change the cell reference to suit):

=MID(A2,SEARCH(" ",A2)+1,LEN(A2)-SEARCH(" ",A2))
I am wondering if a straight formula is the way to go or not. The OP said some of the cells have all the text in one cell meaning some don't. For the ones that don't, that must mean they are already separated. so you cannot use a formula copied down... rather, I think the formula must be placed in the blank cells of Column B which means they need to have their references adjust accordingly.
 
Upvote 0
that must mean they are already separated

Hi Rick,

I didn't read it that way actually. I thought that the cell either a single word or multiple words. I could be wrong of course!!

If my reasoning is correct the following is preferred as my original formula will return #VALUE! if the cell doesn't contain a space:

=IFERROR(MID(A2,SEARCH(" ",A2)+1,LEN(A2)-SEARCH(" ",A2)),"")

Thanks,

Robert
 
Last edited:
Upvote 0
I didn't read it that way actually. I thought that the cell either a single word or multiple words. I could be wrong of course!!
Okay, I see how you are reading it. You might be right, but a list of acronyms by themselves mixed with acronyms and their meaning seemed strange to me, so I assumed the cells with only an acronym must have meant the meaning already existed in the next cell. I could be wrong of course!!:lol:
 
Last edited:
Upvote 0
Cheesy, I Know, but try this if you are running Excel 2013 or later:

Make sure that the first entry is an acronym with a definition - make up one if you have to.
Type the acronym only in a column to the right of the first entry.
Type (or start to type) the second acronym - Flash Fill may do the rest!
You can then do the same with the "after acronym" but in a second column

Flash Fill is always worth a shot - it may not be able to work out what you are trying to do, but if it does work, it's brilliant!
 
Upvote 0
Okay, I see how you are reading it. You might be right, but a list of acronyms by themselves mixed with acronyms and their meaning seemed strange to me, so I assumed the cells with only an acronym must have meant the meaning already existed in the next cell. I could be wrong of course!!:lol:

Rick,

You guys pretty much have the general idea.


Some data is presented like so:

CIA Central Intelligence Agency
FBI Federal Bureau of Investigation
NSA National Security Agency

This is the data that I want separated into two separate columns, whereas some data was placed in the worksheet correctly from the start.

Thanks for helping me out with this guys. I've tried to find where I need the formulas to go but i'm not quite there yet. I'll keep trying
 
Upvote 0
Given the mix of correct cells and cells that need processing plus the need to move some of what is in Column A to Column B, you cannot do what you want with formulas only (you would need some helper cells plus individual copy/pastes and partial deletes). I believe a macro solution would be more practical. Here is such a macro...
Code:
[table="width: 500"]
[tr]
	[td]Sub Acronyms()
  Dim Cell As Range, Parts() As String
  For Each Cell In Range("B1", Cells(Rows.Count, "B").End(xlUp)).SpecialCells(xlBlanks).Offset(, -1)
    Parts = Split(Cell.Value, " ", 2)
    Cell.Offset(, 1).Value = Parts(1)
    Cell.Value = Parts(0)
  Next
End Sub[/td]
[/tr]
[/table]

HOW TO INSTALL MACROs
------------------------------------
If you are new to macros, they are easy to install and use. To install it, simply press ALT+F11 to go into the VB editor and, once there, click Insert/Module on its menu bar, then copy/paste the above code into the code window that just opened up. That's it.... you are done. To use the macro, go back to the worksheet with your data on it and press ALT+F8, select the macro name (Acronyms) from the list that appears and click the Run button. The macro will execute and perform the action(s) you asked for. If you will need to do this again in this same workbook, and if you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.
 
Upvote 0
I might be inclined to use Power Query and the following MCode
Code:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
    #"Split Column by Delimiter" = Table.SplitColumn(#"Changed Type", "Column1", Splitter.SplitTextByEachDelimiter({" "}, QuoteStyle.Csv, false), {"Column1.1", "Column1.2"}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Column1.1", type text}, {"Column1.2", type text}})
in
    #"Changed Type1"
 
Upvote 0

Forum statistics

Threads
1,223,904
Messages
6,175,295
Members
452,632
Latest member
jladair

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