Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Good afternoon! I use the formula to get the difference between the current quarter and the last
TOTALQTD(SUM('Свод 21'[Количество изделий всего,шт]),'Свод 21'[Датавыдачи])-CALCULATE(TOTALQTD(SUM('Свод 21'[Количество изделий всего,шт]),'Свод 21'[Датавыдачи]),DATEADD('календарь'[Date],-1,QUARTER))
discovered that the formula in the 1st quarter subtracts from the 4th quarter of the same year, help me figure out if it is possible to set the conditions under which it will give out 0 if it is 1 quarter?
Solved! Go to Solution.
Hi @DeEviloN ,
Please check you data model. Here I create a sample to have a test.
Summary 21:
calendar:
calendar =
ADDCOLUMNS (
CALENDARAUTO (),
"Year", YEAR ( [Date] ),
"Qtr",
"Qtr" & " "
& QUARTER ( [Date] )
)
Relationship:
You can try this measure to get result.
Diff between Current Qtr and Last Qtr =
VAR _SUMMARIZE =
SUMMARIZE (
'calendar',
'calendar'[Qtr],
"DIFF",
VAR _DIFF =
TOTALQTD ( SUM ( 'Summary 21'[Number of items total,pcs] ), 'Summary 21'[Date] )
- CALCULATE (
TOTALQTD ( SUM ( 'Summary 21'[Number of items total,pcs] ), 'Summary 21'[Date] ),
DATEADD ( 'calendar'[Date], -1, QUARTER )
)
RETURN
IF ( 'calendar'[Qtr] = "Qtr 1", 0, _DIFF )
)
RETURN
SUMX ( _SUMMARIZE, [DIFF] )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @DeEviloN ,
Please check you data model. Here I create a sample to have a test.
Summary 21:
calendar:
calendar =
ADDCOLUMNS (
CALENDARAUTO (),
"Year", YEAR ( [Date] ),
"Qtr",
"Qtr" & " "
& QUARTER ( [Date] )
)
Relationship:
You can try this measure to get result.
Diff between Current Qtr and Last Qtr =
VAR _SUMMARIZE =
SUMMARIZE (
'calendar',
'calendar'[Qtr],
"DIFF",
VAR _DIFF =
TOTALQTD ( SUM ( 'Summary 21'[Number of items total,pcs] ), 'Summary 21'[Date] )
- CALCULATE (
TOTALQTD ( SUM ( 'Summary 21'[Number of items total,pcs] ), 'Summary 21'[Date] ),
DATEADD ( 'calendar'[Date], -1, QUARTER )
)
RETURN
IF ( 'calendar'[Qtr] = "Qtr 1", 0, _DIFF )
)
RETURN
SUMX ( _SUMMARIZE, [DIFF] )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 50 | |
| 46 | |
| 41 | |
| 39 |