Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi, Inquring on how i can get this following data given quarterly date filters. The catch is:
* need to get comparative number of months only when quarter is incomplete.
Actual Quarter vs. Last Quarter and Target
Actual is say, still as of Jan'22 only.
Target is fully given for entire year already.
So when we select Q1 2022
Also if we can get lifetime to date based on the selected quarter:
Example: Start Date of data is Oct'2017 latest is Jan'2022
When I select:
Q3 2021 Lifetime should be Oct'2017 to Sep'2021 sum
Q4 2021 Lifetime should be Oct'2017 to Dec'2021 sum
Q1 2022 Lifetime should be Oct'2017 to Jan'2022 sum
See Illustration.
Thanks in advance!
Solved! Go to Solution.
Hello:
You can do a couple of steps:
Create a field in Date Table to show if Qtr Complete:
If you want thru EOM prev month vs TODAY on last measure suggested you can use:
Hello:
You can do a couple of steps:
Create a field in Date Table to show if Qtr Complete:
Thanks. Will check this solution.
If you want thru EOM prev month vs TODAY on last measure suggested you can use:
@louie_c, last three like cumulative
example
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected('Date'),'Date'[date] <=max('Date'[date])))
only when qtr is selected
Cumm Sales till last qtr = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected('Date'),'Date'[date] <=eomonth(max('Date'[date]),-3) ))
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
13 | |
7 | |
5 |