Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ステータスが特定の値に等しい金額を合計する必要があります(例:「支払い済み」)。また、その寸法でスライスする場合にも注意する必要があります。
現時点で私はこれを持っています:([Measures].[Amount], [Status].[Description].[Paid])
([Measures].[Amount], [Status].[Description].[Paid])
しかし、ステータスの説明でスライスするとPaid、すべてのステータスの説明の量が表示されます。
Paid
where Status.Description='Unpaid'ectの場合は0を表示する必要があります。
Status.Description
あなたはそれをスライスすることができます
except(Status.Description.children, Status.Description.Paid)
合計は、次のような計算されたメジャーで決定できます
with <sum> as sum(measure.amount)