+ Reply to Thread
Results 1 to 7 of 7

Payment Term Percentage from string of text

  1. #1
    Registered User
    Join Date
    06-24-2016
    Location
    Pennsylvania
    MS-Off Ver
    2010
    Posts
    19

    Payment Term Percentage from string of text

    Hello Excel Gurus!

    I am attempting to obtain the cash savings associated to my teams percent discount with regard to payment terms. Provided is a lengthy list of examples to assure formula functionality. I would like to separate the percentage from the string of text (EG: 10% NET 10, NET 30) ONLY extract the 10%.... There are numerous different types of strings, so it isn't as easy as a simple =(LEFT, 3) formula

    Hope one of you all could be of assistance, and as always.. MUCH THANKS!!
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: Payment Term Percentage from string of text

    Hi -

    In all your examples, the percentage is the leftmost characters. So, copy and paste this formula into column B and copy down:

    =IFERROR(NUMBERVALUE(LEFT(A1,FIND("%",A1))),"No %")

    This formula finds the number placement of the percentage sign, takes that number of characters to the left, and then converts it to a true number instead of text. If there is no percentage sign, the formula returns "No %"

    Hope this helps.
    ____________________________________________
    If this has solved your problem, please edit the thread title to add the word [SOLVED] at the beginning. You can do this by
    -Go to the top of the first post
    -Select Thread Tools
    -Select Mark thread as Solved

    If I have been particularly helpful, please "bump" my reputation by pressing the small star in the lower left corner of my post.

  3. #3
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,925

    Re: Payment Term Percentage from string of text

    Try this ...

    =IFERROR(LEFT(A1,FIND("%",A1)),"")

  4. #4
    Registered User
    Join Date
    06-24-2016
    Location
    Pennsylvania
    MS-Off Ver
    2010
    Posts
    19

    Re: Payment Term Percentage from string of text

    Quote Originally Posted by loginjmor View Post
    Hi -

    In all your examples, the percentage is the leftmost characters. So, copy and paste this formula into column B and copy down:

    =IFERROR(NUMBERVALUE(LEFT(A1,FIND("%",A1))),"No %")

    This formula finds the number placement of the percentage sign, takes that number of characters to the left, and then converts it to a true number instead of text. If there is no percentage sign, the formula returns "No %"
    Hope this helps.
    This formula seemed to be No % Happy... Thank you very much for your attempt, though!

    Quote Originally Posted by Phuocam View Post
    Try this ...

    =IFERROR(LEFT(A1,FIND("%",A1)),"")
    SUCCESS! Thank you so much!

  5. #5
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,925

    Re: Payment Term Percentage from string of text

    You are welcome.

  6. #6
    Registered User
    Join Date
    06-24-2016
    Location
    Pennsylvania
    MS-Off Ver
    2010
    Posts
    19

    Re: Payment Term Percentage from string of text

    Quote Originally Posted by Phuocam View Post
    You are welcome.
    Is there a possible way we can factor in the same logic as the above individual, where we convert the text to numbers once the initial extraction was made?

  7. #7
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,925

    Re: Payment Term Percentage from string of text

    =iferror(--left(a1,find("%",a1)),"")

+ 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. [SOLVED] Percentage per payment stage
    By norlax in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 05-12-2016, 11:54 AM
  2. Helping with formula which calculate payment term
    By jowii307 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-20-2014, 09:10 AM
  3. supplier payment term-formula
    By jowii307 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 02-17-2014, 08:46 AM
  4. [SOLVED] workday formula automatic update term of payment
    By pakian in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-30-2013, 03:13 AM
  5. PMT with balloon payment at the end of term
    By Aland2929 in forum Excel General
    Replies: 4
    Last Post: 04-06-2013, 07:16 PM
  6. Multiple Column Lookup Needs to combine formatting for Percentage and Text String.
    By Cardinalbags in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-22-2012, 09:47 AM
  7. Calculating a percentage of days in a term
    By Terri R in forum Excel General
    Replies: 1
    Last Post: 06-12-2006, 06:58 PM

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