Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to insert a formula that puts in the value of a cell if it is
greater than 0 or the number 0 if not. cell A1 = 25.00 cell B1 Result wanted: 25.00 cell A1 = -25.00 Cell B1 Result wanted: 0 Want to put a number in a cell only if it is within a range cell A1= 45.00 Cell B1 = IFCell A1 =45 and <100, return value in A1 or 0 Result would be 45.00 Hope someone can help. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
=if(A10,A1,0) regards FSt1 " wrote: I want to insert a formula that puts in the value of a cell if it is greater than 0 or the number 0 if not. cell A1 = 25.00 cell B1 Result wanted: 25.00 cell A1 = -25.00 Cell B1 Result wanted: 0 Want to put a number in a cell only if it is within a range cell A1= 45.00 Cell B1 = IFCell A1 =45 and <100, return value in A1 or 0 Result would be 45.00 Hope someone can help. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Another one:
=max(0,a1) and =if(and(a1=45,a1<100),a1,0) wrote: I want to insert a formula that puts in the value of a cell if it is greater than 0 or the number 0 if not. cell A1 = 25.00 cell B1 Result wanted: 25.00 cell A1 = -25.00 Cell B1 Result wanted: 0 Want to put a number in a cell only if it is within a range cell A1= 45.00 Cell B1 = IFCell A1 =45 and <100, return value in A1 or 0 Result would be 45.00 Hope someone can help. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy of excel file not showing formulal/function in the function b | Excel Discussion (Misc queries) | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
Offset function with nested match function not finding host ss. | Excel Worksheet Functions | |||
Emulate Index/Match combo function w/ VBA custom function | Excel Worksheet Functions | |||
Nested IF Function, Date Comparing, and NetworkDays Function | Excel Worksheet Functions |