如何用英文单词转换这个excel公式? [英] how to convert this excel formula in english words?

查看:184
本文介绍了如何用英文单词转换这个excel公式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以用英文单词翻译这个excel电子表格单元格公式?

  = ROUND(IF(F28< 1568, 2.5,IF(F28 <2491,0.004873 * F28-5.142,0.02269 * F28 ^ 0.7329)),2)

正在创建一个基于该公式的程序,但我不明白哪一个将首先。至少我理解这部分IF(F28小于1568)...那么什么?

解决方案

从外部if语句开始并向内移动。 IF 函数中的逗号分隔如下语句:



布尔表达式,真实部分和假部分

以下是上述的伪代码。所有的Round都是两位小数。

  IF(F28 <1568)THEN 
ROUND(2.5)
ELSE IF(F28< 2491)THEN
ROUND(0.004873 * F28 - 5.142)
ELSE
ROUND(0.02269 * F28 ^ 0.7329)


can someone please translate this excel spreadsheet cell formula in english words ?

=ROUND(IF(F28 < 1568,2.5,IF(F28 < 2491,0.004873 * F28-5.142,0.02269*F28^0.7329)),2)

am creating a program based from that formula, but i don't understand which one will go first. atleast i understand this part IF(F28 is less than 1568) ...then what?

解决方案

Start from the outer if statement and move inwards. The comma in the IF function separates the statements like :

boolean expression, true part, and false part

The following is the psuedo code of the above. All the Round are to two decimal places.

IF (F28 < 1568) THEN
  ROUND (2.5)
ELSE IF (F28 < 2491) THEN
  ROUND (0.004873 * F28 - 5.142)
ELSE
  ROUND (0.02269 * F28^0.7329)

这篇关于如何用英文单词转换这个excel公式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆