【问题标题】:I need help writing an if then statement using 2 criterion of ltv and credit score我需要帮助使用 ltv 和信用评分的 2 个标准编写 if then 语句
【发布时间】:2017-08-29 20:46:05
【问题描述】:

请帮忙!我一直在努力在 Excel 上解决这个问题。

我正在尝试编写一个根据 LTV 和信用评分范围输出百分比值的代码。如果 LTV 等于或高于 75,并且信用评分 >725,则为 -.25。如果 LTV 等于或高于 75,信用评分在 724 和 675 之间,则 +1.25。如果 LTV 等于或高于 75,信用评分为 625-674,则 +1.75

如果上述相同信用额度的 LTV 低于 75,我还需要写一份声明。 725、724-675、674-625。

我不断收到一个错误,提示我使用了太多参数。

【问题讨论】:

  • 显示你首先做了什么

标签: excel if-statement multiple-conditions if-this-then-that


【解决方案1】:

A2 是 LTV,B2 是信用评分

=CHOOSE((A2<75)*4+(B2>=625)+(B2>=675)+(B2>=725)+1,"error",1.75,1.25,-0.25,"error","<75 & 625-674","<75 & 675-724","<75 & >725")

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-02-14
    • 1970-01-01
    • 2015-03-13
    • 2013-06-16
    • 1970-01-01
    相关资源
    最近更新 更多