MDX 查询 - 如果为空则为 0
很难做这个简单的事情:返回 0 而不是“null”
SELECT
{
[Measures].[Count]
} ON COLUMNS
, {
CASE WHEN
[TimeDMY].[Month] = 0
Then 0
Else
[TimeDMY].[Month]
End
} ON ROWS
FROM [Views]
WHERE {
(
[TimeDMY].[Year - Month - Date].[Month].&[2011-07-01T00:00:00]
如果给定月份的 Count 不为 null,则会返回正确的值。
如果给定月份的值为空,我得到:
Query (20, 1) 该函数需要一个 1 的元组集合表达式 争论。字符串或数字 使用了表达式。
我尝试使用 IIF 和 IsEmpty 函数来实现此功能..并取得了与此类似的成功。
Having a hard time doing this simple thing: return 0 instead of "null"
SELECT
{
[Measures].[Count]
} ON COLUMNS
, {
CASE WHEN
[TimeDMY].[Month] = 0
Then 0
Else
[TimeDMY].[Month]
End
} ON ROWS
FROM [Views]
WHERE {
(
[TimeDMY].[Year - Month - Date].[Month].&[2011-07-01T00:00:00]
This returns correct value if Count is not null for a given month.
If the value is null for a given month, i get:
Query (20, 1) The function expects a
tuple set expression for the 1
argument. A string or numeric
expression was used.
I've tried to make this work with IIF, and IsEmpty functions.. with similar success as this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用计算的度量:
I would use a calculated measure: