+ Reply to Thread
Results 1 to 17 of 17

cell data filter

  1. #1
    Registered User
    Join Date
    02-08-2013
    Location
    Sri Lanka
    MS-Off Ver
    Excel 2016
    Posts
    20

    cell data filter

    Hello .

    I'm new to here.
    I want help to clear my problem.

    SchenoLczyk|tffu9wd3PHAQ|

    In above cell you can see tow section separated with "|" mark. I want get all of characters befor "|" to next cell


    Final result mus see like this "SchenoLczyk"

    I'm waiting for reply

    Thanks
    Last edited by lgchandana; 02-10-2013 at 02:42 AM.

  2. #2
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,064

    Re: Excel Formula for get this

    =left(a1,find("|",a1)-1)
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

  3. #3
    Registered User
    Join Date
    02-08-2013
    Location
    Sri Lanka
    MS-Off Ver
    Excel 2016
    Posts
    20

    Re: Excel Formula for get this

    Wow.
    I got it, Very helpful. rep ++

    I want more one help
    ---------------------------------

    From this cell

    SchenoLczyk|tffu9wd3PHAQ|

    I want get "tffu9wd3PHAQ|" this part from above cell.

    Pls tell me formula to do this

  4. #4
    Forum Expert icestationzbra's Avatar
    Join Date
    01-07-2004
    MS-Off Ver
    2007, 2010
    Posts
    1,421

    Re: Excel Formula for get this

    try:

    Please Login or Register  to view this content.
    - i.s.z -
    CSE, aka Array aka { }, formulae are confirmed with CONTROL+SHIFT+ENTER.
    Replace commas ( , ) with semicolons ( ; ) in formulae, if your locale setting demands.
    All good ideas are courtesy resources from this forum as well as others around the web.
    - e.o.m -

  5. #5
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Excel Formula for get this

    @lgchandana,

    Administrative Note:
    • We would love to continue to help you with your query, but first, before we can proceed…
    • Please see Forum Rule #1 about a proper thread title and adjust accordingly...
    HTH
    Regards, Jeff

  6. #6
    Registered User
    Join Date
    02-08-2013
    Location
    Sri Lanka
    MS-Off Ver
    Excel 2016
    Posts
    20

    Re: Excel Formula for get this

    Thanks for all reply.

    i will follow forum rules

  7. #7
    Registered User
    Join Date
    02-08-2013
    Location
    Sri Lanka
    MS-Off Ver
    Excel 2016
    Posts
    20

    Re: Excel Formula for get this

    Hello Sir,

    I want last help about this.

    Following is my cell data without quote

    "DollrdMrmannj|ikn83idHVO||[email protected]|IezodsuiL9sh"

    You can see this will split by "|" mark, I want get this data to following cell as follows

    B1=DollrdMrmannj
    C1=ikn83idHVO
    [email protected]
    E1=IezodsuiL9sh

    I think this want few formulas.
    Please help to get this

    Thanks

  8. #8
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,926

    Re: Excel Formula for get this

    You were requested in post #5 to change your thread title. Please rename your thread to something more meaningful, that actually describes your problem. Many members will look at a thread title, and if it is of interest to them, or falls within their area of expertise, they might only open those threads. also, searching for ""help"" will not turn up too many results that will benefit you, sorry.

    Look at it this way...if you typed that title into google, what would you expect to get back?
    To change a Title on your post, click EDIT on you're 1st post, then Go Advanced and change your title"
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  9. #9
    Registered User
    Join Date
    02-08-2013
    Location
    Sri Lanka
    MS-Off Ver
    Excel 2016
    Posts
    20

    Re: Excel Formula for get this

    Quote Originally Posted by FDibbins View Post
    You were requested in post #5 to change your thread title. Please rename your thread to something more meaningful, that actually describes your problem. Many members will look at a thread title, and if it is of interest to them, or falls within their area of expertise, they might only open those threads. also, searching for ""help"" will not turn up too many results that will benefit you, sorry.

    Look at it this way...if you typed that title into google, what would you expect to get back?
    To change a Title on your post, click EDIT on you're 1st post, then Go Advanced and change your title"
    Edited Thread title.

    I think now it is suitable for thread.

    And I think you will give answer for this question

    Thanks

  10. #10
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,926

    Re: cell data filter

    assuming your data is in A1...

    =MID(A1,SEARCH("|",A1,1)+1,99)

  11. #11
    Registered User
    Join Date
    02-08-2013
    Location
    Sri Lanka
    MS-Off Ver
    Excel 2016
    Posts
    20

    Re: cell data filter

    =MID(A1,SEARCH("|",A1,1)+1,99)

    When I use this B1 cell data like this; "ikn83idHVO||[email protected]|IezodsuiL9sh"

    But I want B1 = "DollrdMrmannj"

    Hm...

  12. #12
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: cell data filter

    I don't see the text below in your text in cel B1.

    Please Login or Register  to view this content.
    If you need to look in the data in B1, then you have to change the cellreference from A1 in B1.
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  13. #13
    Registered User
    Join Date
    02-08-2013
    Location
    Sri Lanka
    MS-Off Ver
    Excel 2016
    Posts
    20

    Re: cell data filter

    No.

    I want do this.

    A1=DollrdMrmannj|ikn83idHVO||[email protected]|IezodsuiL9sh

    I want split above data to the following cells,

    B1=DollrdMrmannj
    C1=ikn83idHVO
    [email protected]
    E1=IezodsuiL9sh

    One or few formulas.

  14. #14
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: cell data filter

    Use text to column for that.

    excel 2007 => data => text to column

  15. #15
    Registered User
    Join Date
    02-08-2013
    Location
    Sri Lanka
    MS-Off Ver
    Excel 2016
    Posts
    20

    Re: cell data filter

    Quote Originally Posted by oeldere View Post
    use text to column for that.

    Excel 2007 => data => text to column
    best answer

    rep ++++

  16. #16
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: cell data filter

    Thanks for the reply and reps.

    Glad i could help.

    If your question is solved, will you mark the question as solved.

  17. #17
    Forum Expert icestationzbra's Avatar
    Join Date
    01-07-2004
    MS-Off Ver
    2007, 2010
    Posts
    1,421

    Re: cell data filter

    in case you want a formula-based solution, assuming that your source string is in A1, put the following in B1 then drag-fill the formula towards right:

    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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