Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() I am trying to set up a functions such as: If F35=<50, then $20.00, If F3550, then $30.00, If F35200, F35*0.15. Hope someone can help with this one...Thanks! -- terry_d ------------------------------------------------------------------------ terry_d's Profile: http://www.excelforum.com/member.php...o&userid=32678 View this thread: http://www.excelforum.com/showthread...hreadid=524843 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One Option:
=IF(F35<=50,20,MAX(30,F35*0.15)) -- HTH. :) Dana DeLouis Windows XP, Office 2003 "terry_d" wrote in message ... I am trying to set up a functions such as: If F35=<50, then $20.00, If F3550, then $30.00, If F35200, F35*0.15. Hope someone can help with this one...Thanks! -- terry_d ------------------------------------------------------------------------ terry_d's Profile: http://www.excelforum.com/member.php...o&userid=32678 View this thread: http://www.excelforum.com/showthread...hreadid=524843 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Thanks Dana for your response, the formula works great, however, if there there is no amount in F35, the response is still 20, I need it to be zero... -- terry_d ------------------------------------------------------------------------ terry_d's Profile: http://www.excelforum.com/member.php...o&userid=32678 View this thread: http://www.excelforum.com/showthread...hreadid=524843 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This may not be the most elegant, but it works.
=IF(F35<=50,20,IF(F3550,IF(F35200,F35*0.15,30)," not 50 or <=50")) "terry_d" wrote: I am trying to set up a functions such as: If F35=<50, then $20.00, If F3550, then $30.00, If F35200, F35*0.15. Hope someone can help with this one...Thanks! -- terry_d ------------------------------------------------------------------------ terry_d's Profile: http://www.excelforum.com/member.php...o&userid=32678 View this thread: http://www.excelforum.com/showthread...hreadid=524843 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() This function is working well, but I need to get a result of zero if F35 has no entry. -- terry_d ------------------------------------------------------------------------ terry_d's Profile: http://www.excelforum.com/member.php...o&userid=32678 View this thread: http://www.excelforum.com/showthread...hreadid=524843 |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=IF(F35=0,0,IF(F35<=50,20,MAX(30,F35*0.15))) Hope this helps. Pete |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Now I'm getting errors. It doesn't seem to want to allow me to save the function in the format it is in, or the version I'm using. I'm running on Office 2002 Pro... -- terry_d ------------------------------------------------------------------------ terry_d's Profile: http://www.excelforum.com/member.php...o&userid=32678 View this thread: http://www.excelforum.com/showthread...hreadid=524843 |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I don't understand what you mean. Does Excel say that there is an error
in the formula? If so, are you sure you have typed it in correctly? The formula should work on all versions of Excel. Pete |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I get Excel to determine the line curve formula without graph. | Excel Discussion (Misc queries) | |||
User-defined functions created in Excel 2000 fail in Excel 2003 | Excel Discussion (Misc queries) | |||
Database functions should use criteria in formula, as 1-2-3 does | Excel Worksheet Functions | |||
Are there functions that perform robust statistics in Excel? | Excel Worksheet Functions | |||
Visible rows and functions that work | Excel Worksheet Functions |