Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
We have fortnightly data and ask is to show cumulative sum of ProductCount on MTD, YTD and QTD level.
In this requirement, FY starts from Sep and Q1=Sep-Nov and so on
MTD and YTD is working as expected, but since for QTD we do not have any option to define quarter start.
TestQTD is the expected output in screenshot
Kindly suggest possible solution.
Appreciate your inputs.
Solved! Go to Solution.
Hi, @SQuazi
You can try the following methods. The fiscal year calendar is shown.
Measure:
TestQTD =
CALCULATE ( SUM ( 'Table'[ProductCount] ),
FILTER ( ALL ( 'Date' ),
[Date] <= SELECTEDVALUE ( 'Table'[ReportingDate] )
&& [FYQ] = SELECTEDVALUE ( 'Date'[FYQ] )
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @SQuazi
You can try the following methods. The fiscal year calendar is shown.
Measure:
TestQTD =
CALCULATE ( SUM ( 'Table'[ProductCount] ),
FILTER ( ALL ( 'Date' ),
[Date] <= SELECTEDVALUE ( 'Table'[ReportingDate] )
&& [FYQ] = SELECTEDVALUE ( 'Date'[FYQ] )
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@SQuazi- Check this out, let me know if this work for you.
ProductValue QTD =
CALCULATE(
SUM('Table'[ProductValue]),
FILTER(
ALL('Table'),
'Table'[Date] <= MAX('Table'[Date])
&& YEAR('Table'[Date]) = YEAR(MAX('Table'[Date]))
&& STARTOFQUARTER('Table'[Date], 3) = STARTOFQUARTER(MAX('Table'[Date]), 3)
)
)
Hi try it :
QTD =
Var QuarterNumber = INT( (MOD('Table'[Date].[NbMonth] + 3, 12)) / 3)
RETURN
SUMX(FILTER('Table', INT( (MOD('Table'[Date].[NbMonth] + 3, 12)) / 3) == QuarterNumber && 'Table'[Date] < EARLIER('Table'[Date]) + 1 && 'Table'[Date].[Year] == EARLIER('Table'[Date].[Year])), 'Table'[ProductCount])
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 |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |