+ Reply to Thread
Results 1 to 2 of 2

try to find formula problem

  1. #1
    Registered User
    Join Date
    12-05-2006
    Posts
    1

    try to find formula problem

    I have been presented with two tasks that need to be done in an Excell spread sheet. Both seem very similar so I think I can put them both here.

    Situation 1
    I need a formula to add up all values in a column (column A) for over or under 22000. I will put the over in one cell and the under in another. The column has values in it all the way from 10 to 100000 and this will determine a discount.

    Situation 2
    Similar to situation 1, I need to have a formula that will add together the values in column B if the value in Column A is over or under 22000. I will put the over in one cell and the under in another. This will used in determining a Tax.

    I have tried to combine a sum and an if statment and I have also looked at a count if statement. Please help.


    Thank You

  2. #2
    Forum Contributor
    Join Date
    08-14-2006
    Location
    USA
    MS-Off Ver
    2019
    Posts
    686
    I've included equal to 22000 in the "over" category

    add up all values in a column (column A) for under 22000
    =SUMIF(A:A,"<22000",A:A)

    add up all values in a column (column A) for EQUAL TO or over 22000
    =SUMIF(A:A,">=22000",A:A)

    add together the values in column B if the value in Column A is under 22000
    =SUMIF(A:A,"<22000",B:B)

    add together the values in column B if the value in Column A is EQUAL to or over 22000
    =SUMIF(A:A,">=22000",B:B)

+ 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