The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
14 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
28 | |
19 | |
14 | |
8 | |
5 |