如何使用 ifelse 在 AWS QuickSight 中编写计算字段公式
How to write calculated field formula in AWS QuickSight using ifelse
我正在尝试编写一个公式来根据日期计算折扣费用。
2019 年 5 月之后产生的任何费用的贴现率为 7%,在此之前的任何费用均为 6%。
这是我的公式,但它说语法不正确。任何帮助将不胜感激。
ifelse(month >= 5 AND year >= 2019), then {unblended_cost} - ({unblended_cost} * 0.07), else {unblended_cost} - ({unblended_cost} * 0.06))
尝试以下操作,如果遇到其他错误请告诉我
ifelse(
month >= 5 AND year >= 2019,
{unblended_cost} - ({unblended_cost} * 0.07),
{unblended_cost} - ({unblended_cost} * 0.06)
)
本质上ifelse
可以认为是一个函数,then
和else
关键字是无关的。
我正在尝试编写一个公式来根据日期计算折扣费用。
2019 年 5 月之后产生的任何费用的贴现率为 7%,在此之前的任何费用均为 6%。
这是我的公式,但它说语法不正确。任何帮助将不胜感激。
ifelse(month >= 5 AND year >= 2019), then {unblended_cost} - ({unblended_cost} * 0.07), else {unblended_cost} - ({unblended_cost} * 0.06))
尝试以下操作,如果遇到其他错误请告诉我
ifelse(
month >= 5 AND year >= 2019,
{unblended_cost} - ({unblended_cost} * 0.07),
{unblended_cost} - ({unblended_cost} * 0.06)
)
本质上ifelse
可以认为是一个函数,then
和else
关键字是无关的。