+ Reply to Thread
Results 1 to 2 of 2

Alpha characters problem?

  1. #1
    TMF in MN
    Guest

    Alpha characters problem?

    I need a formula that will add column C values based on column A.
    One total for all Column A values that begin numeric, one for values that
    begin alpha. I tried the following formla but the alpha characters are
    throwing it off.

    =SUMIF(AA9:AA13,"<9000000",AC9:AC13)

    A B C
    1 12AD10 Joe $200.00
    2 140000 Sue $300.00
    3 16X516 Steph $100.00
    4 E09004 Jim $50.00
    5 E74997 Lisa $80.00

    Results should be $600 and $130

  2. #2
    Biff
    Guest

    Re: Alpha characters problem?

    Hi!

    For entries that begin with a number:

    =SUMPRODUCT(--(ISNUMBER(LEFT(A1:A5)+0)),C1:C5)

    For entries that begin with a letter:

    =SUMPRODUCT(--(ISERROR(LEFT(A1:A5)+0)),C1:C5)

    Biff

    "TMF in MN" <TMFinMN@discussions.microsoft.com> wrote in message
    news:73394B46-4CAE-44EF-8229-96EAFD04E114@microsoft.com...
    >I need a formula that will add column C values based on column A.
    > One total for all Column A values that begin numeric, one for values that
    > begin alpha. I tried the following formla but the alpha characters are
    > throwing it off.
    >
    > =SUMIF(AA9:AA13,"<9000000",AC9:AC13)
    >
    > A B C
    > 1 12AD10 Joe $200.00
    > 2 140000 Sue $300.00
    > 3 16X516 Steph $100.00
    > 4 E09004 Jim $50.00
    > 5 E74997 Lisa $80.00
    >
    > Results should be $600 and $130




+ 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