The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Account Name | Date | Amount |
Rev | 12-Jun-18 | 430 |
Exp | 13-Aug-17 | 250 |
Margin | 2-Mar-17 | 0 |
Rev | 12 July 18 | 400 |
Exp | 13-Aug-17 | 300 |
I have a table where I need to create a calculated measure based on the below logic
If the Account Name <> 'Margin' then Sum of amount
if the Account Name = "Margin' then Sum of amount =
Sum of Amount when account name is 'Rev' - Sum of Amount when account name is 'Exp'
Regards
Hitesh
Hi. Can you explain a bit more your idea? i don't understand why <> marin or = margin both result in sum of amount. The third line should something like: (i think variables can help to get better undestanding)
VAR amount_rev = CALCULATE ( SUM (Table[Amount] ) , Table[Name] = "Rev" ) VAR amount_exp = CALCULATE ( SUM (Table[Amount] ) , Table[Name] = "Exp" ) RETURN amount_rev - amount_exp
Hope this helps
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Happy to help!
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
20 | |
12 | |
10 | |
7 |