Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I think this problem would be best solved by an IF statement. I need to write
a formula that will format a cell or return a value (1 or 0) if cell a1 is less than 500 and d1 is greater than 2% ;also if cell a1 happens to be between 501-999 and cell d1 is greater than 1%; also if cell a1 is greater than 1000 and cell d1 is greater than 0%. I hope I have explained my problem properly. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(OR(AND(A1<500,D12%),AND(A1=501,A1<=999,D11% ),AND(A11000,D10)),1,0)
? Or (if I guess at some of your undefined ranges) =IF(D11%*((A1<1000)+(A1<500)),1,0) -- David Biddulph "DP7" wrote in message ... I think this problem would be best solved by an IF statement. I need to write a formula that will format a cell or return a value (1 or 0) if cell a1 is less than 500 and d1 is greater than 2% ;also if cell a1 happens to be between 501-999 and cell d1 is greater than 1%; also if cell a1 is greater than 1000 and cell d1 is greater than 0%. I hope I have explained my problem properly. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try looking in the help index for AND to mix wit OR
=if(or(and(a1<500,d12%),other or -- Don Guillett SalesAid Software "DP7" wrote in message ... I think this problem would be best solved by an IF statement. I need to write a formula that will format a cell or return a value (1 or 0) if cell a1 is less than 500 and d1 is greater than 2% ;also if cell a1 happens to be between 501-999 and cell d1 is greater than 1%; also if cell a1 is greater than 1000 and cell d1 is greater than 0%. I hope I have explained my problem properly. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Multiple If Statements or Macro's in Worksheet:View Code | Excel Discussion (Misc queries) | |||
Multiple IF Statements | Excel Discussion (Misc queries) | |||
HELP! Multiple if statements on the same line | New Users to Excel | |||
How can I have multiple "If" statements in one formula? | Excel Discussion (Misc queries) | |||
multiple IF statements | Excel Worksheet Functions |