Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Have column with multiple rows with differnet dollar amounts. What I would
like to do is write a formula outlining a percentage for a dollar range: $0 - $25,000 = 4% Column A Column B $10,000 4% $15,000 4% |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In B1 enter:
=IF((A10)*(A1<24999),4%,"") and format B1 as percentage -- Gary''s Student - gsnu200770 "Dimitri" wrote: Have column with multiple rows with differnet dollar amounts. What I would like to do is write a formula outlining a percentage for a dollar range: $0 - $25,000 = 4% Column A Column B $10,000 4% $15,000 4% |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Gary:
That work's great! But here is the second part (and I do apologize to do this in stages but I only ask after I have tried to make it work). $0 - $25,000 = 4% $25,000 - $50,000 = 5% $50000 - $75,000 = 6% $75,000 + = 7% Column A Column B $10,000 4% $15,000 4% $35,000 5% $55,000 6% $85,000 7% Dimitri "Gary''s Student" wrote: In B1 enter: =IF((A10)*(A1<24999),4%,"") and format B1 as percentage -- Gary''s Student - gsnu200770 "Dimitri" wrote: Have column with multiple rows with differnet dollar amounts. What I would like to do is write a formula outlining a percentage for a dollar range: $0 - $25,000 = 4% Column A Column B $10,000 4% $15,000 4% |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
B is
=IF(AND(A1=0,A1<=25000),"4%","0%") Dimitri wrote: Have column with multiple rows with differnet dollar amounts. What I would like to do is write a formula outlining a percentage for a dollar range: $0 - $25,000 = 4% Column A Column B $10,000 4% $15,000 4% |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dollar Range to Percentage | Excel Discussion (Misc queries) | |||
Using the If() Function for a percentage range | Excel Worksheet Functions | |||
Percentage within a range | Excel Worksheet Functions | |||
Excel Function for max of percentage or dollar amount | Excel Worksheet Functions | |||
Assign a dollar amount to a corresponding number in a range of num | Excel Discussion (Misc queries) |