Hello,
I'm trying to build a table where all of the lines are different calculations (see the below example in excel). This is a stand-alone report with different columns and each line is a different calculation and a different display format. Is there a way to do this in PowerBi?
Solved! Go to Solution.
@CharlotteB Two thoughts, use measures for your rows and the "Show on rows" feature for a Matrix. Otherwise, create a single measure and use something like a SWITCH statement:
Measure =
SWITCH(MAX('Table'[Column A]),
"Amount", <some calc>,
"#items", <some calc>,
...
)
@CharlotteB Two thoughts, use measures for your rows and the "Show on rows" feature for a Matrix. Otherwise, create a single measure and use something like a SWITCH statement:
Measure =
SWITCH(MAX('Table'[Column A]),
"Amount", <some calc>,
"#items", <some calc>,
...
)
@Greg_Deckler Thank you! The "show on rows" feature was exactly what I needed.
And I just bought your Mastering PowerBi book! Very informative:)
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
208 | |
53 | |
43 | |
40 | |
40 |
User | Count |
---|---|
264 | |
210 | |
73 | |
70 | |
64 |