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
lnz
Frequent Visitor

SUMX with measures expression for categories by date

Hi, guys

To calculate stocks portfolio yield dynamic I need to calculate my [Potfolio Total Value] for allselected stocks by date

 

I've made next measures:

  • [Asset Trade Price]
  • [Asset Trade Yield]
  • [Asset Current Amount]
  • [dev Asset Current Price] - I think this measure need some changes
  • [Asset Current Value] = [Asset Current Amount] * [dev Asset Current Price]
  • [Total Current Amount] - Total amount of shares in portfolio
  • [dev Portfolio Current Value] - Total value of portfolio

  

[dev Portfolio Current Value] code:

 

dev Portfolio Current Value = 
VAR d = MAX('calendar'[Date])
RETURN
    CALCULATE(
        SUMX(VALUES('split'[asset-id]);
           [Asset Current Value]
        );
        FILTER(
            ALL('calendar');
            'calendar'[Date] <= d
        )
    )

  

I expect to recive [dev Portfolio Current Value] = 206 359,50 at 16.11.2018 (16th November 2018)
But I've got 222 559,50 because [Asset Current Price] = 193,53 both for Apple and Facebook

 

How could I fix my formulas to sum [amount]*[price] for each asset-id per day

 

PBI Project Here

 

PBI.Community.Topic-0301.png

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@lnz,

 

Change it as follows.

VALUES ( company[ticker] )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@lnz,

 

Change it as follows.

VALUES ( company[ticker] )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.