Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi: Can anybody help a not very sophisticated used.
I need to create a formula such as A1-4500*11% where the answer is positive. if not the answer is 0. Example A1 =5000 therefore 500 @11%=55 Example A1=4000 therefore minus figure answer required is 0 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=IF((A1-4500)*11%<0,0,(A1-4500)*11%) HTH, Paul "Freddie" wrote in message oups.com... Hi: Can anybody help a not very sophisticated used. I need to create a formula such as A1-4500*11% where the answer is positive. if not the answer is 0. Example A1 =5000 therefore 500 @11%=55 Example A1=4000 therefore minus figure answer required is 0 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=max(0,a1-4500)*11%
is another way. Freddie wrote: Hi: Can anybody help a not very sophisticated used. I need to create a formula such as A1-4500*11% where the answer is positive. if not the answer is 0. Example A1 =5000 therefore 500 @11%=55 Example A1=4000 therefore minus figure answer required is 0 -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try something like this:
For a value in A1 B1: =MAX((A1-4500)*11%,0) Does that help? *********** Regards, Ron XL2002, WinXP-Pro "Freddie" wrote: Hi: Can anybody help a not very sophisticated used. I need to create a formula such as A1-4500*11% where the answer is positive. if not the answer is 0. Example A1 =5000 therefore 500 @11%=55 Example A1=4000 therefore minus figure answer required is 0 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks, works a treat
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Can I make a formula in Excel to display result in same cell? | Excel Worksheet Functions | |||
Possible Lookup Table | Excel Worksheet Functions | |||
reference the result of a formula in a text formatted cell | Excel Discussion (Misc queries) | |||
Formula Result Correct but value in the cell is wrong | Excel Worksheet Functions |