问题描述
有人可以用英文单词翻译这些Excel公式吗? = IF(F28 =,,ROUND (IF(F28
因为我目前创建了一个使用这个公式自动计算的计算机程序,但我不明白这一点。喜欢哪一个应该先走?我知道MDAS规则是什么,但是你可以看到这个公式,它有一个逗号分隔。
= IF(F28 =,,ROUND(IF(F28
如果F28为空,则输出为空,否则将为ROUND 。
ROUND->如果F28小于750,则输出将为((0.1391 * F28 ^ 0.4931)/ 2),否则输出将为((0.001559 * F28)+2.476)/ 2)。无论输出是什么,它将舍入到2位数。
ROUND的公式是ROUND(值,将数字舍入到数字)。
舍入后,最终输出将计算为101.61%圆角值
分步
1-检查F28是否为空。如果空输出为空。如果不是空的步骤2
2-将step3或step4的输出循环到2位数
3-检查F28是否小于750.如果是输出是(0.1391 * F28 ^ 0.4931)/ 2。如果不是step4
4-输出是((0.001559 * F28)+2.476)/ 2)step5
5-最终输出是舍入值的101.61%。
Can someone please translate these Excel formula in English words?
=IF(F28="","",ROUND(IF(F28<750,(0.1391*F28^0.4931)/2,((0.001559*F28)+2.476)/2),2)*101.61%)
because I am currently created a computer program to automate computations using this formula, but I don't understand this thing. Like which one should go first? I know what the MDAS rule is, but as you can see this formula, there is a comma separation.
=IF(F28="","",ROUND(IF(F28<750,(0.1391*F28^0.4931)/2,((0.001559*F28)+2.476)/2),2)*101.61%)
If F28 is empty then output is empty otherwise it will ROUND.ROUND-> If F28 is less then 750 then output will be ((0.1391*F28^0.4931)/2) otherwise output will be ((0.001559*F28)+2.476)/2). Whatever is the output it will rounded to 2 digits.The formula for ROUND is ROUND(value, digits to round the number to).
After rounding, the final output will be calculated as 101.61% of the rounded value.
Step-by-Step1- check if F28 is empty. if empty output is empty. if not empty step-2
2- round the output of step3 or step4 to 2 digits
3- check F28 is less then 750. if yes output is (0.1391*F28^0.4931)/2. if not step4
4- output is ((0.001559*F28)+2.476)/2) step5
5- the final output is 101.61% of rounded value.
这篇关于如何用英文单词转换这个excel公式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!