formula for spreadsheet

S

smiley61799

I have a spreadsheet which I include a total for square foot for items I
produce. In a seperate column I include how many days out I was notified of
the order. Then I have four columns which break out 5 days or less, 6-10
days etc... I am trying to find a formula which can take the number of Sqare
feet (A) then read the cell for days out (B) and correctly place it
automatically in the appropriate cell breakdown (C-F). Is there a way to
make this happen?

A B C D E
F
Square Feet Days Out 5 days or less 6-10 days 11-29 days 30 or
more days
10 12 10
 
B

Bill Kuunders

one way would be to enter

in C2 =IF(B2<=5,A2,"")
in D2 =IF(AND(B2>=6,B2<=10),A2,"")
in E2 = IF(AND(B2>=11,B2<=29,A2,"")
in F2 =IF(B2>=30,A2,"")
 
S

smiley61799

This is awesome and works great!
Bill Kuunders said:
one way would be to enter

in C2 =IF(B2<=5,A2,"")
in D2 =IF(AND(B2>=6,B2<=10),A2,"")
in E2 = IF(AND(B2>=11,B2<=29,A2,"")
in F2 =IF(B2>=30,A2,"")
 

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

Scrabble Value calculation for Welsh words 0
formula for excel spreadsheet 9
Excel Formula Help 1
Easy button? 1
Excel Microsoft excel interest formula 2
Formula Help???!!! 1
For Sale Ulefone Armor X5 7
Conversions of Decimal Feet to Decimal Inches - Formula?? 0

Top