_first_of_month (current_date) Cognos 函数如何工作?
How does the _first_of_month (current_date) Cognos function work?
_first_of_month (current_date) Cognos 功能如何工作?
如果今天的当前日期是9月8日,那么return是9月1日到9月8日的所有值吗?本月至今。或者 return 是上个月的值吗?是否只有 return 1 天的值?
因此,如果我有一个 CreatedDate 列,那么我会使用这样的函数。
[创建日期]=_first_of_month (current_date)
这是 CreatedDate 列的示例。
_first_of_month() 接受一个日期值和 returns 一个对应于传入值的月份的第一天的日期值。
传入时间:2015-08-15 Returns:2015-08-01
传入时间:2014-03-21 Returns:2014-03-01
传入时间:1996-07-22 Returns:1996-07-01
重要的是要记住 return 值的类型将是另一个日期。
_first_of_month (current_date) Cognos 功能如何工作?
如果今天的当前日期是9月8日,那么return是9月1日到9月8日的所有值吗?本月至今。或者 return 是上个月的值吗?是否只有 return 1 天的值?
因此,如果我有一个 CreatedDate 列,那么我会使用这样的函数。
[创建日期]=_first_of_month (current_date)
这是 CreatedDate 列的示例。
_first_of_month() 接受一个日期值和 returns 一个对应于传入值的月份的第一天的日期值。
传入时间:2015-08-15 Returns:2015-08-01
传入时间:2014-03-21 Returns:2014-03-01
传入时间:1996-07-22 Returns:1996-07-01
重要的是要记住 return 值的类型将是另一个日期。