【发布时间】:2012-09-10 17:57:52
【问题描述】:
好的,所以我有一个名为Employee 的暗淡,它有Employee_ID,而我试图从报告表中过滤掉的ID 是&[12345]。
我将如何从我的报告表中筛选出仅包含该员工 ID 的记录?
【问题讨论】:
标签: visual-studio tsql reporting-services ssas mdx
好的,所以我有一个名为Employee 的暗淡,它有Employee_ID,而我试图从报告表中过滤掉的ID 是&[12345]。
我将如何从我的报告表中筛选出仅包含该员工 ID 的记录?
【问题讨论】:
标签: visual-studio tsql reporting-services ssas mdx
你可以使用Except函数:
Except('a set that contains employees', {'the employee you want to exclude'})
【讨论】: