Cognos Studio 中日期提示中的选项
Options in Date Prompt in Cognos Studio
我在数据库中有一个日期列。
我在提示页面有一个"Date from"和"Date to"来过滤数据
现在,我想在提示页面给用户3个选项
a) 年复一年
b) 季度环比
c) 月环比
假设用户选择 Date-from 为 Nov 1st 2004 和 Date-to 为 Nov 1st 2015 并在选项中选择 "Year over Year"
输出应该只是年复一年的分叉。
我无法获取 3 个选项并将其连接到日期提示字段。
如何实现?
我认为您需要使用复合过滤器来测试这两个参数:
(?type? = 'Year over Year' and {Date logic using date parameters for YoY})
or
(?type? = 'Quarter over Quarter' and {Date logic using date parameters for QoQ})
or
(?type? = 'Month over Month' and {Date logic using date parameters for MoM})
您没有指明 Year over Year 等逻辑应该是什么,但您应该能够调整上面的模式。
我在数据库中有一个日期列。 我在提示页面有一个"Date from"和"Date to"来过滤数据
现在,我想在提示页面给用户3个选项 a) 年复一年 b) 季度环比 c) 月环比
假设用户选择 Date-from 为 Nov 1st 2004 和 Date-to 为 Nov 1st 2015 并在选项中选择 "Year over Year" 输出应该只是年复一年的分叉。
我无法获取 3 个选项并将其连接到日期提示字段。
如何实现?
我认为您需要使用复合过滤器来测试这两个参数:
(?type? = 'Year over Year' and {Date logic using date parameters for YoY})
or
(?type? = 'Quarter over Quarter' and {Date logic using date parameters for QoQ})
or
(?type? = 'Month over Month' and {Date logic using date parameters for MoM})
您没有指明 Year over Year 等逻辑应该是什么,但您应该能够调整上面的模式。