ordertype actual actual YTD
A 900 1500
B 500 2000
C 200 2200
D 300 2500
实际列应从(当前日期月减去开始日期)开始计算值。
实际年初至今应根据当前日期减去年的开始日期
计算此处开始日期月/年应为4月1日(财政年度)
答案 0 :(得分:0)
在您的脚本中使用startId
和InYearToDate
用例示例:
InMonthToDate
现在,在您的日历表中,您可以看到YTD和MTD字段,您可以像这样使用它们:
Load distinct
Date,
if(InYearToDate(Date,today(),0,4),1,0) as YTD, // the "4" mean that The year start at the 4th month,
if(InMonthToDate(Date,today(),0),1,0) as MTD
resident DataTable
有关这些功能的更多信息,请访问here