Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

powerbi - How to translate a Tableau FIXED LOD to Power BI?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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])
)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...