Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a FIXED LOD with multiple dimensions that looks likes this:

{ FIXED [Customer ID], [Quarter], [Product Type] : SUM([Sales]) }

In Power BI I have wrote it as below using the example given in this article:

CALCULATE(
    SUM('Table'[Sales]), 
    ALLEXCEPT('Table', 'Table'[Customer ID]),
    ALLEXCEPT('Table', 'Table'[Quarter]),
    ALLEXCEPT('Table', 'Table'[Product Type])
)

However it is not working as expected, could you help me understand the correct way of doing it?

question from:https://stackoverflow.com/questions/65852528/how-to-translate-a-tableau-fixed-lod-to-power-bi

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

I found the answer by editing my original expression, the following worked as expected:

CALCULATE(
    SUM('Table'[Sales]), 
    ALLEXCEPT('Table', 'Table'[Customer ID], 'Table'[Quarter], 'Table'[Product Type])
)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...