+ Reply to Thread
Results 1 to 6 of 6

Removing character(s) from end of last word

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-10-2007
    MS-Off Ver
    Excel 2010
    Posts
    293

    Removing character(s) from end of last word

    Hello,

    How can I remove the last + from end of each keyword?

    Basically I want to remove any empty space and or the very last + or multiple +'s

    See attached sheet for example:

    Example:

    Currently it is: +ab +cd +efg +
    Desired Result: +ab +cd +efg



    Currently it is: +abs +def + +
    Desired Result: +abs +def


    Currently it is: [ab cd ]
    Desired Result: [ab cd]


    Currently it is: [ab cd ef ]
    Desired Result: Currently it is: [ab cd ef]


    etc.


    Thanks
    Attached Files Attached Files

  2. #2
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Removing character(s) from end of last word

    Try this
    Enter im B2 and copy down
    Formula: copy to clipboard
    =IF(ISNUMBER(FIND("[",A2)),A2,TRIM(SUBSTITUTE(" "&TRIM(SUBSTITUTE(C2,"+"," "))," "," +")))

    v A B
    1 KWD
    2 +ab +cd +efg + +ab +cd +efg
    3 +abs +def + + +abs +def
    4 +absch +fegh + ++ +absch +fegh
    5 +absch +fegh +ghi ++ +absch +fegh +ghi
    6 +abc +++ +abc
    7 [ab cd ] [ab cd ]
    8 [ab cd ef ] [ab cd ef ]
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  3. #3
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,294

    Re: Removing character(s) from end of last word

    I thought the OP wanted to make the " ]" a "]".
    One test is worth a thousand opinions.
    Click the * Add Reputation below to say thanks.

  4. #4
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,294

    Re: Removing character(s) from end of last word

    Hey Vegas,

    Put this in B2 and pull it down

    =IF(LEFT(A2,1)="+",SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A2, " +", " ")," +"," ")," +"," "))," "," +"),SUBSTITUTE(A2," ]","]"))
    Removing Last +Test.xlsx
    Last edited by MarvinP; 04-18-2017 at 08:02 PM.

  5. #5
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Removing character(s) from end of last word

    With minor correction
    Formula: copy to clipboard
    =IF(ISNUMBER(FIND("[",A2)),SUBSTITUTE(A2," ]","]"),TRIM(SUBSTITUTE(" "&TRIM(SUBSTITUTE(C2,"+"," "))," "," +")))

    v A B
    1 KWD
    2 +ab +cd +efg + +ab +cd +efg
    3 +abs +def + + +abs +def
    4 +absch +fegh + ++ +absch +fegh
    5 +absch +fegh +ghi ++ +absch +fegh +ghi
    6 +abc +++ +abc
    7 [ab cd ] [ab cd]
    8 [ab cd ef ] [ab cd ef]

  6. #6
    Forum Contributor
    Join Date
    02-10-2007
    MS-Off Ver
    Excel 2010
    Posts
    293

    Re: Removing character(s) from end of last word

    Thank You All. AllKey you're formula worked perfectly.

    Thanks

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Deleting/removing content on Word table using Excel VBA (not Word VBA)
    By frankyuen1028 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-10-2016, 06:28 AM
  2. Removing Characters from Right Until Certain Character
    By jam_ran in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 01-13-2016, 12:19 PM
  3. [SOLVED] Removing Everything After a Character
    By afriedman in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 06-09-2013, 01:46 AM
  4. removing a character from a cell
    By wstarkey in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 03-15-2012, 08:07 AM
  5. Removing Everything After Certain Character
    By rykermason in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 05-08-2010, 02:56 PM
  6. [SOLVED] Removing last character of cell
    By mira in forum Excel General
    Replies: 4
    Last Post: 07-27-2005, 03:05 PM
  7. [SOLVED] removing text after a character
    By Kim in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 02-18-2005, 10:06 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1