有没有办法创建动态参数?
Is there a way to create dynamic parameter?
我的数据集有过滤器:
保留日期在 $filter_date
或之后的行
我可以将参数 $filter_date 设置为距今天 60 天(或 8 周或 2 个月)吗?
好问题!
您可以像这样使用与动态参数配对的表达式:
date_diff(current_date(), date1) <= $number_of_days
您可以在此处阅读有关 date/time 函数的更多信息:
https://www.palantir.com/docs/foundry/contour/expressions-relative-dates/#deriving-relative-dates
我的数据集有过滤器:
保留日期在 $filter_date
或之后的行我可以将参数 $filter_date 设置为距今天 60 天(或 8 周或 2 个月)吗?
好问题!
您可以像这样使用与动态参数配对的表达式:
date_diff(current_date(), date1) <= $number_of_days
您可以在此处阅读有关 date/time 函数的更多信息: https://www.palantir.com/docs/foundry/contour/expressions-relative-dates/#deriving-relative-dates