+ Reply to Thread
Results 1 to 7 of 7

How to: calculate number of pieces when seperated by a '/' symbol

Hybrid View

  1. #1
    Mas
    Guest

    How to: calculate number of pieces when seperated by a '/' symbol

    Hi all,

    I would like to calculate the number of pieces if it was seperated by a '/'
    symbol.

    i.e. 999999/88 equals two pieces
    i.e. 999999 equals one piece
    i.e. 999999/88/77 equals three pieces

    Thank you in advanced.



  2. #2
    Guest

    Re: How to: calculate number of pieces when seperated by a '/' symbol

    Hi
    Here's one way:
    =LEN(A2)-LEN(SUBSTITUTE(A2,"/",""))+1

    --
    Andy.


    "Mas" <mas13@hotmail.com> wrote in message
    news:u1TWo1tVFHA.2424@TK2MSFTNGP10.phx.gbl...
    > Hi all,
    >
    > I would like to calculate the number of pieces if it was seperated by a
    > '/' symbol.
    >
    > i.e. 999999/88 equals two pieces
    > i.e. 999999 equals one piece
    > i.e. 999999/88/77 equals three pieces
    >
    > Thank you in advanced.
    >




  3. #3
    JE McGimpsey
    Guest

    Re: How to: calculate number of pieces when seperated by a '/' symbol

    Note that this will return 1 if the cell is blank.

    That may be acceptable to the OP if the cell will always be populated.


    In article <OKrya4tVFHA.2420@TK2MSFTNGP12.phx.gbl>, <Andy B> wrote:

    > Hi
    > Here's one way:
    > =LEN(A2)-LEN(SUBSTITUTE(A2,"/",""))+1


  4. #4
    JE McGimpsey
    Guest

    Re: How to: calculate number of pieces when seperated by a '/' symbol

    One way:

    If the string is in cell A1:

    =LEN(A1)-LEN(SUBSTITUTE(A1,"/","")) + (LEN(A1)>0)



    In article <u1TWo1tVFHA.2424@TK2MSFTNGP10.phx.gbl>,
    "Mas" <mas13@hotmail.com> wrote:

    > Hi all,
    >
    > I would like to calculate the number of pieces if it was seperated by a '/'
    > symbol.
    >
    > i.e. 999999/88 equals two pieces
    > i.e. 999999 equals one piece
    > i.e. 999999/88/77 equals three pieces
    >
    > Thank you in advanced.


  5. #5
    Harlan Grove
    Guest

    Re: How to: calculate number of pieces when seperated by a '/' symbol

    JE McGimpsey wrote...
    >One way:
    >
    >If the string is in cell A1:
    >
    >=LEN(A1)-LEN(SUBSTITUTE(A1,"/","")) + (LEN(A1)>0)

    ....

    Getting really picky, if "/9/8/7/" would be 5 fields, with the first
    and last blank, should the result of the formula ="" be 0 or 1 fields?
    If 1, then

    =LEN(A1)-(LEN(SUBSTITUTE(A1,"/","")))+1-ISBLANK(A1))


  6. #6
    Mas
    Guest

    Re: How to: calculate number of pieces when seperated by a '/' symbol

    Thanx.

    I would like to expand on it a little more and not only for the formula to
    refer to A1 but the who column of "A" ... i.e a continues range of numbers.

    Mas


    "JE McGimpsey" <jemcgimpsey@mvps.org> wrote in message
    news:jemcgimpsey-A378D6.05235812052005@msnews.microsoft.com...
    > One way:
    >
    > If the string is in cell A1:
    >
    > =LEN(A1)-LEN(SUBSTITUTE(A1,"/","")) + (LEN(A1)>0)
    >
    >
    >
    > In article <u1TWo1tVFHA.2424@TK2MSFTNGP10.phx.gbl>,
    > "Mas" <mas13@hotmail.com> wrote:
    >
    >> Hi all,
    >>
    >> I would like to calculate the number of pieces if it was seperated by a
    >> '/'
    >> symbol.
    >>
    >> i.e. 999999/88 equals two pieces
    >> i.e. 999999 equals one piece
    >> i.e. 999999/88/77 equals three pieces
    >>
    >> Thank you in advanced.




  7. #7
    Domenic
    Guest

    Re: How to: calculate number of pieces when seperated by a '/' symbol

    Try...

    =SUMPRODUCT(LEN(A1:A10)-LEN(SUBSTITUTE(A1:A10,"/",""))+(LEN(A1:A10)>0))

    Hope this helps!

    In article <#FM01tDWFHA.2684@TK2MSFTNGP09.phx.gbl>,
    "Mas" <mas13@hotmail.com> wrote:

    > Thanx.
    >
    > I would like to expand on it a little more and not only for the formula to
    > refer to A1 but the who column of "A" ... i.e a continues range of numbers.
    >
    > Mas
    >
    >
    > "JE McGimpsey" <jemcgimpsey@mvps.org> wrote in message
    > news:jemcgimpsey-A378D6.05235812052005@msnews.microsoft.com...
    > > One way:
    > >
    > > If the string is in cell A1:
    > >
    > > =LEN(A1)-LEN(SUBSTITUTE(A1,"/","")) + (LEN(A1)>0)
    > >
    > >
    > >
    > > In article <u1TWo1tVFHA.2424@TK2MSFTNGP10.phx.gbl>,
    > > "Mas" <mas13@hotmail.com> wrote:
    > >
    > >> Hi all,
    > >>
    > >> I would like to calculate the number of pieces if it was seperated by a
    > >> '/'
    > >> symbol.
    > >>
    > >> i.e. 999999/88 equals two pieces
    > >> i.e. 999999 equals one piece
    > >> i.e. 999999/88/77 equals three pieces
    > >>
    > >> Thank you in advanced.


+ 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