Calculating amounts / percentages

  • Thread starter Thread starter Sentinel
  • Start date Start date
S

Sentinel

I've been trying to create a formula for the following for ages on Excel
2000 but can't get the result I require:

I have one column with cells each containing numbers. The numbers represent
days that payment of an account is overdue by. If the account was paid
before time then the number will be preceded by a negative sign.

I need an equation to count how many entries are in the column and then:

The amount of accounts overdue by 1 to 5 days (and a percentage of this
figure)
The amount of accounts overdue by 6 to 10 days (and a percentage of this
figure)
The amount of accounts overdue by 11 days or more (and a percentage of this
figure)

Any help appreciated, thanks!
 
One way:

Assume your data is in column A. Then:

B1: =SUMPRODUCT(--(A$1:A$1000>=1),--(A$1:A$1000<6))
C1: =B1/COUNT(A$1:A$1000)

B2: =SUMPRODUCT(--(A$1:A$1000>=6),--(A$1:A$1000<11))
C2: =B2/COUNT(A$1:A$1000)

B3: =COUNTIF(A1:A1000,">=11")
C3: =B3/COUNT(A$1:A$1000)
 
Hi Sentinel,
One way, using count & if array entered. See below
Your Original data in Column A,

A B C D
1 Days 01 -05 % 06-10
2 -1
3 0
4 1
5 2
6 3
7 4
8 5
9 6


In B2 array enter this formula
=COUNT(IF(A2:A9<0,FALSE,IF(A2:A9>5,FALSE,A2:A9)))
In B3 enter =B2/COUNT(A2:A9)%

Apply simlar to D2, E2 etc... (Just change the values "0", "5" etc to the
ones required)

Hope this helps

Mathew
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top