Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a power pivot, where I have calculated total value of each security (ISIN) by multiplying the balance of each security and multiplied each balance with the price of that security. When I have in pivot column ISINs and rows dates, then everything works fine. However, if I would like to see the value of the securities by clients (column ClientId), then it is not working. The mistake that the measure is doing, is that it is not at first calculating price and amount of each security, but it just calculates the total number of securities with the sum of all the prices of these securities at that date. How should the new measure look like?
current measure to calculate balance of securities:
=VAR MaxDate = MAX('Calendar'[Date])
VAR StartDate = MaxDate - 10*365 // Assuming a year has 365 days
RETURN
CALCULATE(
SUM('BloombergHindadeAbi'[Amount]);
FILTER(
ALL('Calendar'[Date]);
'Calendar'[Date] >= StartDate && 'Calendar'[Date] <= MaxDate
)
)
current measure to get prices of securities at every date:
=CALCULATE(MAX('BloombergHindadeAbi'[EURValue]);ALL('BloombergHindadeAbi'[Account]);ALL('BloombergHindadeAbi'[PortfolioID]);ALL('BloombergHindadeAbi'[Name&Surname]))
current measure to calculate value of securities:
=[SaldoTK]*[AllpricesEUR]
Hi @maasool model is not known. To propose some possible solution, please share sample data with expected output.
Usually, the best would be to get the last price (as you need it for valuation of securities on last day) into some column per item level (if it is ISIN) and then simply multiply quantity with price (if possible). This value could be summed, and matching with some Customer ID should be fine on customer level, as each ISIN could be assigned to some customer.
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
21 | |
15 | |
14 | |
11 | |
7 |
User | Count |
---|---|
25 | |
24 | |
12 | |
12 | |
11 |