Forum Discussion
Lesveilleurs
2 years agoFrequent Visitor
Line Chart with Multiple Values Starting from $100 USD (Calculated from portfolio's Start Month)
Hi everyone, I have some monthly portfolio performance data on hand, along with the starting month for each portfolio. Additionally, I have historical monthly performance data for 3 benchmark...
- 2 years ago
Then you will need to use a disconnected Calendar table and modify the measure slightly.
Measure = var md = max('Calendar'[Date]) var mn = max(Master[Name]) var mnd = minx(filter(Data,[Name]=mn),[Date]) return if(edate(mnd,-1)=md,100, 100*productx(filter(allselected(Data),[Name]=mn && [Date]<=md),1+[Mothly Return (%)]/100))
lbendlin
2 years agoSuper User
You may be overcomplicating this a little? Do you really need to add the initial "100" value? What do you mean by "umbrella" ?
Lesveilleurs
2 years agoFrequent Visitor
Hi lbendlin,
Sorry for confusing you, the umbrella represents the outcome's look.
We like to have them all start from 100, to analysis and compare the performance of them, and for people easily understand how it is, sometimes, will use Usd 1,000 instead.
Here are some application examples.
- lbendlin2 years agoSuper User
Then you will need to use a disconnected Calendar table and modify the measure slightly.
Measure = var md = max('Calendar'[Date]) var mn = max(Master[Name]) var mnd = minx(filter(Data,[Name]=mn),[Date]) return if(edate(mnd,-1)=md,100, 100*productx(filter(allselected(Data),[Name]=mn && [Date]<=md),1+[Mothly Return (%)]/100))