March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello there PBI community,
Recently I have been referencing an article to learn more about DAX language in an attempt to create a P&L statement within Power BI Desktop. The problem I am facing is that calculated members of my report are showing as blank within the matrix visual, but show fine within a PivotTable within excel.
My calculated members are GM1 (Gross margin o. PPC/cost of sales) which for simplicities sake, I am calculating by simply subtracting [Total Revenue] - [Cost of Sales] measures. When I drag the measure on the canvas, it shows correctly as 14,082,453. This is also the total figure I get when drilling down to GM1. However, it does not display and simply displays as a blank value in the matrix visual.
I have used this DAX formula in order to arrange my FS in the order of the calculated measures I require:
IF (
COUNTROWS ( VALUES ( DIM_Headers[Header] ) ) = 1,
SWITCH (
VALUES ( DIM_Headers[Header Order] ),
1, [Rev Act],
2, [CoS Act],
3, [GM1 Act],
4, [SCO Var Act],
5, [SCO Fixed Act],
6, [OOIE Act],
7, [ADM Fix Act],
8, [OVC Act],
BLANK ()
),
100
)
My non-calculated measures (such as the sums of revenue and cost of goods sold, however, show correctly in the matrix. Is there any potential way to get these to show up within the matrix visual in Power BI? I have tried for hours on this with no result and it is getting rather frustrating.....
Any help would be greatly greatly appreciated!!!
Hello,
it is not that trivial to figure out without knowing the structure of your raw data.
Nontheless I think ALL should help you. I guess GM should be something like:
GM=CALCULATE([Rev Act]-[CoS Act],ALL(Table[SubCategories]).
For a more complicated P&L check here.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |