excel - In a spreadsheet, I want to copy cells with a negative value onto another cell where there is a floor for negative values -
in spreadsheet cell b1, value -1200.
i want cell b2 copy value of b1 , limit (validate?) no less -800.
i'm using google docs can use excel if functions not available in google docs.
edit: if b1 has value of 2000, b2 should have value of 2000. if b1 has value of -2000, b2 should have value of -800
you don't need maths here. i'm using excel think pretty similar in google.
suppose b3 holds floor, no constants in formulae :-)
b2 => =if( b1 > $b$3; b1; $b$3)
b3 position fixed can copy expression
Comments
Post a Comment