Forum Discussion
Need help
Sample data:
Month Net Asset
2018/1/1 100
2018/2/1 200
2018/5/1 300
2019/1/1 400
2019/2/1 500
2019/3/1 600
2019/5/1 700
For the line and column chart,
I want it shows in chart(only select the newest value since the net asset is cumulative):
Month Net Asset
Jan 400
Feb 500
March 600
May 700
How to do like that? Thanks
We have filters for date slicer, Asset Class, Group Name and Investment Product
Hi Anonymous ,
It seems that you want to get max value of each month in chart, if so, you could try to use below measure to see whether it work or not.
Measure 2 = CALCULATE(MAX('Table (2)'[Net Asset]), ALLEXCEPT('Table (2)','Table (2)'[month].[Month]))In addition, you said that the Net Asset is not cumulative, so if possible could you please inform me more detailed information(such as your expected output and your sample data)? Then I will help you more correctly.
Please do mask sensitive data before uploading.
Thanks for your understanding and support.
Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- AnonymousNot applicable
However, "net sales" is not cumulative, so we need to sum up it. That is why i cannot use top 12 func. can anyone help me out?
- AnonymousNot applicable
UPUPUPU
- daxCommunity Support
Hi Anonymous ,
It seems that you want to get max value of each month in chart, if so, you could try to use below measure to see whether it work or not.
Measure 2 = CALCULATE(MAX('Table (2)'[Net Asset]), ALLEXCEPT('Table (2)','Table (2)'[month].[Month]))In addition, you said that the Net Asset is not cumulative, so if possible could you please inform me more detailed information(such as your expected output and your sample data)? Then I will help you more correctly.
Please do mask sensitive data before uploading.
Thanks for your understanding and support.
Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.