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.
Hi Team,
I need a quick help - Below is my sample data;
asset_id | Cost | report_month | Initial_Investment_Date |
10001 | -5657238.52 | 31 December 2018 | 20 December 2018 |
10002 | 1416485.97 | 13 June 2019 | 20 December 2018 |
10003 | -140632.97 | 31 December 2018 | 17 December 2018 |
10004 | -164934.35 | 31 December 2018 | 17 December 2018 |
10005 | -196886.16 | 31 December 2018 | 17 December 2018 |
10006 | -281265.94 | 31 December 2018 | 17 December 2018 |
10007 | -840321.12 | 31 December 2018 | 20 December 2018 |
10008 | -379857.57 | 13 June 2019 | 20 December 2018 |
10009 | -843797.83 | 31 December 2018 | 17 December 2018 |
10010 | -1490709.5 | 31 December 2018 | 17 December 2018 |
10011 | -1503310.22 | 31 December 2018 | 17 December 2018 |
10012 | -1828228.64 | 31 December 2018 | 17 December 2018 |
10013 | -1879448.61 | 31 December 2018 | 17 December 2018 |
10014 | -2630956.75 | 31 December 2018 | 17 December 2018 |
10015 | -2812659.45 | 31 December 2018 | 17 December 2018 |
10016 | -1969428.3 | 13 June 2019 | 12 June 2019 |
I need to get sum of the cost when;
1. report_month date >= initial_investment_date &&
2. report_month_quarter<= Selected - report_month_quarter
My report slicer is "report_month" as quarter and year. Hence, whenever I select my quarter of a year in slicer - I should get sum between above two condition 1 & 2.
Please help!!
Solved! Go to Solution.
Hi @Ram_DCT ,
Here are the steps you can follow:
1. Create calculated table.
DateTable= CALENDARAUTO()
2. Create measure.
Measure =
var _select=SELECTEDVALUE('DateTable'[Date].[QuarterNo])
return
CALCULATE(SUM('Table'[Cost]),FILTER(ALL('Table'),MAX('Table'[report_month])>=MAX('Table'[Initial_Investment_Date])&&QUARTER(MAX('Table'[report_month]))<=_select))
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Ram_DCT ,
Here are the steps you can follow:
1. Create calculated table.
DateTable= CALENDARAUTO()
2. Create measure.
Measure =
var _select=SELECTEDVALUE('DateTable'[Date].[QuarterNo])
return
CALCULATE(SUM('Table'[Cost]),FILTER(ALL('Table'),MAX('Table'[report_month])>=MAX('Table'[Initial_Investment_Date])&&QUARTER(MAX('Table'[report_month]))<=_select))
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
75 | |
54 | |
37 | |
31 |
User | Count |
---|---|
99 | |
56 | |
50 | |
42 | |
40 |