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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -