Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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!
User | Count |
---|---|
17 | |
14 | |
13 | |
13 | |
12 |
User | Count |
---|---|
19 | |
15 | |
14 | |
10 | |
9 |