Write a Formula

  • Thread starter Thread starter Esperanza
  • Start date Start date
E

Esperanza

How do I write a formula for penalty on past due accounts with great than or
equal to 1000 but less than 5000, apply a penalty of $100.
For accounts with a past due balance of 5000 or more, apply a penalty of 200.
For accounts with a ttl past due balance of less than 1000, no penalty?
 
Let A1 hold the past due amount
=IF(A1>5000,200, IF(A1>=1000,100,0))

OR
=(A1>=1000)*100 + (A1>5000)*100

best wishes
 
Esperanza said:
How do I write a formula for penalty on past due
accounts with great than or equal to 1000 but less
than 5000, apply a penalty of $100. For accounts
with a past due balance of 5000 or more, apply a
penalty of 200. For accounts with a ttl past due
balance of less than 1000, no penalty?

If the account balance is in A1:

=lookup(A1, {0,1000,5000},{0,100,200})
 

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

Write a formula for a penalty for status of TRUE? 3
Sliding scale Question 1
Calculate a quantity rebate 1
Inheritance 11
INDEX MATCH formula 3
Help w/ Formula for If/Then 2
Hours to minutes jcs 5
If 0 then blank 8

Back
Top