Forum Discussion
GuestUser
Helper V
6 years agoReport Table View Issue
Hi , In contination to this thread https://community.powerbi.com/t5/Service/Profit-and-Loss-Reports/td-p/887396/page/2 i have dragged Level columns from Dimension table (level 5 and Level 6) I...
Icey
Community Support
6 years agoHi GuestUser ,
Is this what you want?
P&L Schema Amount =
IF (
HASONEVALUE ( 'P&L Schema'[P&L] ),
SUMX (
SUMMARIZE (
'P&L Schema',
'P&L Schema'[P&L],
'P&L Schema'[Account ID],
'P&L Schema'[Weight],
"@Sum Amount", SUM ( 'Fact'[Amount] )
),
[@Sum Amount] * 'P&L Schema'[Weight]
),
SUMX (
FILTER (
SUMMARIZE (
'P&L Schema',
'P&L Schema'[P&L],
'P&L Schema'[Account ID],
'P&L Schema'[Weight],
"@Sum Amount", SUM ( 'Fact'[Amount] )
),
[P&L] = "Profit before depreciation"
|| [P&L] = "Profit after depreciation"
),
[@Sum Amount] * 'P&L Schema'[Weight]
)
)
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
GuestUser
Helper V
6 years agoHi Icey
is it possible fo u to attach pbix file
i need report with below columns
PnL level5 leve6 Amount
- Icey6 years ago
Community Support
- GuestUser6 years ago
Helper V
Thanks Icey
but this is not what i am expecting..when i drag level 5 and level 6 columns from dimension table
i can see multiple lines for Profit before depreciation
and profit after depreciation
i need only one total line - mentioning profit before depreciation (amount of 1200)
- Icey6 years ago
Community Support
Hi GuestUser ,
How about this?
P&L Schema Amount 2 = IF ( MAX ( 'P&L Schema'[P&L] ) = "Profit before depreciation" || MAX ( 'P&L Schema'[P&L] ) = "Profit after depreciation", IF ( HASONEVALUE ( 'Dimension'[Level5] ), BLANK (), SUMX ( SUMMARIZE ( 'P&L Schema', 'P&L Schema'[P&L], 'P&L Schema'[Account ID], 'P&L Schema'[Weight], "@Sum Amount", SUM ( 'Fact'[Amount] ) ), [@Sum Amount] * 'P&L Schema'[Weight] ) ), SUMX ( SUMMARIZE ( 'P&L Schema', 'P&L Schema'[P&L], 'P&L Schema'[Account ID], 'P&L Schema'[Weight], "@Sum Amount", SUM ( 'Fact'[Amount] ) ), [@Sum Amount] * 'P&L Schema'[Weight] ) )Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.