0

在电子表格单元格 B1 中,值为 -1200。

我希望单元格 B2 复制 B1 的值并将其限制(验证?)不小于 -800。

我正在使用谷歌文档,但如果这些功能在谷歌文档中不可用,我也可以使用 excel。

编辑:如果 B1 的值为 2000,则 B2 的值应为 2000。如果 B1 的值为 -2000,则 B2 的值应为 -800

4

3 回答 3

3

Excel & Google Spreadsheets

=Max(B1,-800)
于 2013-04-18T15:30:58.397 回答
1

Excel 公式会很简单,在 Google 电子表格中可能类似:

在 B2 中,输入这个公式:

=If(B1<-800,-800,B1)

这是在说:

如果 B1 中的值小于-800,则输入值“-800”。否则,使用 B1 中的值。这有效地为公式设置了“下限”或下限。

于 2013-04-18T15:26:37.817 回答
-1

You don't need any maths here. I'm using Excel but I think it is pretty similar in Google.

Suppose that B3 holds floor, no constants in formulae :-)

B2 => =if( b1 > $b$3; b1; $b$3)

b3 position is fixed so you can copy the expression

于 2013-04-18T15:30:17.723 回答