Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
hcze
Helper I
Helper I

Total of calculated measure

Hi,

 

I have a Profit measure to calculate the difference between Revenue and Expense.

 

The DAX is 

Amount2 = If(MIN(Account[Account]) = "Profit",CALCULATE(SUM('Transaction'[Amount]),ALLSELECTED('Transaction')),SUM('Transaction'[Amount]))
 
I would like to include the Profit into total. The total should show 0 for control check but I am unable to achieve that. This is what I have so far.
 
2020-10-19_9-38-42.jpg
 
Thanks for helping.
 
AccountIndex
Revenue1
Expense2
Profit3
 
 
AccountAmount
Revenue-200
Expense100
1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @hcze,

You can use lookupvalue function to simple get the result based on the current account:

Measure =
LOOKUPVALUE (
    Transaction[Amount],
    Account[Account], SELECTEDVALUE ( Transaction[Account] ),
    SUM ( Account[Amount] )
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

3 REPLIES 3
v-shex-msft
Community Support
Community Support

HI @hcze,

You can use lookupvalue function to simple get the result based on the current account:

Measure =
LOOKUPVALUE (
    Transaction[Amount],
    Account[Account], SELECTEDVALUE ( Transaction[Account] ),
    SUM ( Account[Amount] )
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@hcze , if you have table like the last one(Table2), Then better create a table like this and join with account table

 

Union( Table2,
summarize(Table2, "Account", "Profit", "Amount", sum(Table2[Amount])))

samdthompson
Memorable Member
Memorable Member

hello, perhaps something like :

 

Amount2

 

VAR transaction=SUM('Transaction'[Amount])

VAR Revenue=calculate(transaction,filter(account,[account]="revenue"))

VAR Expense=calculate(transaction,filter(account,[account]="expense"))

VAR Profit=Revenue+Expense

 

RETURN
=IF(HASONEVALUE(account[account]),transaction,Revenue+Expense-Profit)

 

 

I am on a mobile so cant error check this but think it will work. you might need to alter a couple of the table names to better suit your situation.

 

 

// if this is a solution please mark as such. Kudos always appreciated.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors