Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
报表可以在不提示数据的情况下具有默认参数值吗?比如制作一个只自动提取昨天数据的报表?从最近 7 个工作日等开始?
使用基于 的计算CurrentDate。要获取昨天的日期,请使用CurrentDate - 1,或者如果您只想要上周的记录,则归档之前日期的所有记录CurrentDate - 7
CurrentDate
CurrentDate - 1
CurrentDate - 7
这可以作为可选参数实现(如果您将其留空,则默认为昨天),或者如果您不想提示用户输入,则完全跳过该参数并将您的公式直接放入记录选择公式编辑器中。
你也可以按照 4444 在 Select Expert 中说的做:
{date_field} = CurrentDate - 1 //For yesterdays data {date_field} = CurrentDate - 7 //For the last weeks data