+ Reply to Thread
Results 1 to 7 of 7

counting problem

  1. #1
    JE McGimpsey
    Guest

    Re: counting problem

    Since the text is bolded only if the cell contains a space character,
    you could use

    =SUMPRODUCT(--(A1:A3=" "),--(B1:B3<>"")) ==> 2

    =SUMPRODUCT(--(A1:A3=" "),--(C1:C3<>"")) ==> 1





    In article <A2311A7B-9201-4B1A-ACF8-04DD7DED529D@microsoft.com>,
    philip <philip@discussions.microsoft.com> wrote:

    > I have post my question yesterday, seem there is no solution?? Is there
    > anybody can give me some alternative way to do it, will be greatly appreciate.
    >
    > my problem is
    >
    > Is there anyway to count the cell with bolded text (the text is bolded by
    > conditional format), the criteria is
    > 1- $A1=" " > format text to bold
    > 2- $A1>=1 > format text to color "blue" & "italic"
    > 3- $A1="xx" > format text to color "red" & "italic"
    >
    > will show:-
    >
    > A B C D...
    > 1 " " P1 P2 (bolded text by CF)
    > 2 " " S1 (bolded text by CF)
    > 3 1 x1
    > ___________________________
    > count: 2 1
    >
    >
    > Please HELP
    >
    > MANY THANKS
    > philip


  2. #2
    philip
    Guest

    Re: counting problem

    thanks JE Mcgimpsey

    It works fine, thank very much, however, in order to make it more perfact,
    how can I modify the formula not count the blank space in the cell.

    thank again
    philip

    "JE McGimpsey" wrote:

    > Since the text is bolded only if the cell contains a space character,
    > you could use
    >
    > =SUMPRODUCT(--(A1:A3=" "),--(B1:B3<>"")) ==> 2
    >
    > =SUMPRODUCT(--(A1:A3=" "),--(C1:C3<>"")) ==> 1
    >
    >
    >
    >
    >
    > In article <A2311A7B-9201-4B1A-ACF8-04DD7DED529D@microsoft.com>,
    > philip <philip@discussions.microsoft.com> wrote:
    >
    > > I have post my question yesterday, seem there is no solution?? Is there
    > > anybody can give me some alternative way to do it, will be greatly appreciate.
    > >
    > > my problem is
    > >
    > > Is there anyway to count the cell with bolded text (the text is bolded by
    > > conditional format), the criteria is
    > > 1- $A1=" " > format text to bold
    > > 2- $A1>=1 > format text to color "blue" & "italic"
    > > 3- $A1="xx" > format text to color "red" & "italic"
    > >
    > > will show:-
    > >
    > > A B C D...
    > > 1 " " P1 P2 (bolded text by CF)
    > > 2 " " S1 (bolded text by CF)
    > > 3 1 x1
    > > ___________________________
    > > count: 2 1
    > >
    > >
    > > Please HELP
    > >
    > > MANY THANKS
    > > philip

    >


  3. #3
    JE McGimpsey
    Guest

    Re: counting problem

    Since the text is bolded only if the cell contains a space character,
    you could use

    =SUMPRODUCT(--(A1:A3=" "),--(B1:B3<>"")) ==> 2

    =SUMPRODUCT(--(A1:A3=" "),--(C1:C3<>"")) ==> 1





    In article <A2311A7B-9201-4B1A-ACF8-04DD7DED529D@microsoft.com>,
    philip <philip@discussions.microsoft.com> wrote:

    > I have post my question yesterday, seem there is no solution?? Is there
    > anybody can give me some alternative way to do it, will be greatly appreciate.
    >
    > my problem is
    >
    > Is there anyway to count the cell with bolded text (the text is bolded by
    > conditional format), the criteria is
    > 1- $A1=" " > format text to bold
    > 2- $A1>=1 > format text to color "blue" & "italic"
    > 3- $A1="xx" > format text to color "red" & "italic"
    >
    > will show:-
    >
    > A B C D...
    > 1 " " P1 P2 (bolded text by CF)
    > 2 " " S1 (bolded text by CF)
    > 3 1 x1
    > ___________________________
    > count: 2 1
    >
    >
    > Please HELP
    >
    > MANY THANKS
    > philip


  4. #4
    philip
    Guest

    Re: counting problem

    thanks JE Mcgimpsey

    It works fine, thank very much, however, in order to make it more perfact,
    how can I modify the formula not count the blank space in the cell.

    thank again
    philip

    "JE McGimpsey" wrote:

    > Since the text is bolded only if the cell contains a space character,
    > you could use
    >
    > =SUMPRODUCT(--(A1:A3=" "),--(B1:B3<>"")) ==> 2
    >
    > =SUMPRODUCT(--(A1:A3=" "),--(C1:C3<>"")) ==> 1
    >
    >
    >
    >
    >
    > In article <A2311A7B-9201-4B1A-ACF8-04DD7DED529D@microsoft.com>,
    > philip <philip@discussions.microsoft.com> wrote:
    >
    > > I have post my question yesterday, seem there is no solution?? Is there
    > > anybody can give me some alternative way to do it, will be greatly appreciate.
    > >
    > > my problem is
    > >
    > > Is there anyway to count the cell with bolded text (the text is bolded by
    > > conditional format), the criteria is
    > > 1- $A1=" " > format text to bold
    > > 2- $A1>=1 > format text to color "blue" & "italic"
    > > 3- $A1="xx" > format text to color "red" & "italic"
    > >
    > > will show:-
    > >
    > > A B C D...
    > > 1 " " P1 P2 (bolded text by CF)
    > > 2 " " S1 (bolded text by CF)
    > > 3 1 x1
    > > ___________________________
    > > count: 2 1
    > >
    > >
    > > Please HELP
    > >
    > > MANY THANKS
    > > philip

    >


  5. #5
    philip
    Guest

    counting problem

    I have post my question yesterday, seem there is no solution?? Is there
    anybody can give me some alternative way to do it, will be greatly appreciate.

    my problem is

    Is there anyway to count the cell with bolded text (the text is bolded by
    conditional format), the criteria is
    1- $A1=" " > format text to bold
    2- $A1>=1 > format text to color "blue" & "italic"
    3- $A1="xx" > format text to color "red" & "italic"

    will show:-

    A B C D...
    1 " " P1 P2 (bolded text by CF)
    2 " " S1 (bolded text by CF)
    3 1 x1
    ___________________________
    count: 2 1


    Please HELP

    MANY THANKS
    philip


  6. #6
    JE McGimpsey
    Guest

    Re: counting problem

    Since the text is bolded only if the cell contains a space character,
    you could use

    =SUMPRODUCT(--(A1:A3=" "),--(B1:B3<>"")) ==> 2

    =SUMPRODUCT(--(A1:A3=" "),--(C1:C3<>"")) ==> 1





    In article <A2311A7B-9201-4B1A-ACF8-04DD7DED529D@microsoft.com>,
    philip <philip@discussions.microsoft.com> wrote:

    > I have post my question yesterday, seem there is no solution?? Is there
    > anybody can give me some alternative way to do it, will be greatly appreciate.
    >
    > my problem is
    >
    > Is there anyway to count the cell with bolded text (the text is bolded by
    > conditional format), the criteria is
    > 1- $A1=" " > format text to bold
    > 2- $A1>=1 > format text to color "blue" & "italic"
    > 3- $A1="xx" > format text to color "red" & "italic"
    >
    > will show:-
    >
    > A B C D...
    > 1 " " P1 P2 (bolded text by CF)
    > 2 " " S1 (bolded text by CF)
    > 3 1 x1
    > ___________________________
    > count: 2 1
    >
    >
    > Please HELP
    >
    > MANY THANKS
    > philip


  7. #7
    philip
    Guest

    Re: counting problem

    thanks JE Mcgimpsey

    It works fine, thank very much, however, in order to make it more perfact,
    how can I modify the formula not count the blank space in the cell.

    thank again
    philip

    "JE McGimpsey" wrote:

    > Since the text is bolded only if the cell contains a space character,
    > you could use
    >
    > =SUMPRODUCT(--(A1:A3=" "),--(B1:B3<>"")) ==> 2
    >
    > =SUMPRODUCT(--(A1:A3=" "),--(C1:C3<>"")) ==> 1
    >
    >
    >
    >
    >
    > In article <A2311A7B-9201-4B1A-ACF8-04DD7DED529D@microsoft.com>,
    > philip <philip@discussions.microsoft.com> wrote:
    >
    > > I have post my question yesterday, seem there is no solution?? Is there
    > > anybody can give me some alternative way to do it, will be greatly appreciate.
    > >
    > > my problem is
    > >
    > > Is there anyway to count the cell with bolded text (the text is bolded by
    > > conditional format), the criteria is
    > > 1- $A1=" " > format text to bold
    > > 2- $A1>=1 > format text to color "blue" & "italic"
    > > 3- $A1="xx" > format text to color "red" & "italic"
    > >
    > > will show:-
    > >
    > > A B C D...
    > > 1 " " P1 P2 (bolded text by CF)
    > > 2 " " S1 (bolded text by CF)
    > > 3 1 x1
    > > ___________________________
    > > count: 2 1
    > >
    > >
    > > Please HELP
    > >
    > > MANY THANKS
    > > philip

    >


+ 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