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
Hi, I have the following Matrix and I would like to add another column with the difference between the rates of the 2 different periods columns (201803 & 201802), these 2 columns are from the same column (Reporting Period), when I connect to the data source I only bring the latest 2 periods (Direct Query). Could you please help me out.
Solved! Go to Solution.
HI @Manar
Try this one
Measure =
CALCULATE (
SUM ( ExchangeRatesFacts[ExchangeRate] ),
FILTER (
ALL ( ExchangeRatesFacts[ReportingPeriod] ),
ExchangeRatesFacts[ReportingPeriod] = [CurrentReportingPeriod]
)
)
- CALCULATE (
SUM ( ExchangeRatesFacts[ExchangeRate] ),
FILTER (
ALL ( ExchangeRatesFacts[ReportingPeriod] ),
ExchangeRatesFacts[ReportingPeriod] = [LastReportingPeriod]
)
)
HI @Manar
Try a MEASURE along following lines
Measure =
CALCULATE ( SUM ( TableName[Rates] ), TableName[ReportingPeriod] = 201803 )
- CALCULATE ( SUM ( TableName[Rates] ), TableName[ReportingPeriod] = 201802 )
What about if we have year more than 2 like 2015 , 2016 ,2017 ,2018 , 2019, 2020
I tried using your formula just added a measure instead of reporting period since they change every month
Measure = CALCULATE ( SUM ( ExchangeRatesFacts[ExchangeRate] ), ExchangeRatesFacts[ReportingPeriod] = CurrencyDim[CurrentReportingPeriod] )
- CALCULATE ( SUM ( ExchangeRatesFacts[ExchangeRate] ), ExchangeRatesFacts[ReportingPeriod] = CurrencyDim[LastReportingPeriod])
and it gives me an error saying a function Calculate has been used in a true/false expression that is used as a table filter expression, This is not allowed.
Hi,
Are these 2 MEASUREs?
CurrencyDim[CurrentReportingPeriod]
CurrencyDim[LastReportingPeriod]
HI @Manar
Try this one
Measure =
VAR CurrentRP = [CurrentReportingPeriod]
VAR LastRP = [LastReportingPeriod]
RETURN
CALCULATE (
SUM ( ExchangeRatesFacts[ExchangeRate] ),
ExchangeRatesFacts[ReportingPeriod] = CurrentRP
)
- CALCULATE (
SUM ( ExchangeRatesFacts[ExchangeRate] ),
ExchangeRatesFacts[ReportingPeriod] = LastRP
)
@Zubair_Muhammad It tells me function Filter is not supported in this context in DirectQuery Mode. 😞
Thank you though!
HI @Manar
Try this one
Measure =
CALCULATE (
SUM ( ExchangeRatesFacts[ExchangeRate] ),
FILTER (
ALL ( ExchangeRatesFacts[ReportingPeriod] ),
ExchangeRatesFacts[ReportingPeriod] = [CurrentReportingPeriod]
)
)
- CALCULATE (
SUM ( ExchangeRatesFacts[ExchangeRate] ),
FILTER (
ALL ( ExchangeRatesFacts[ReportingPeriod] ),
ExchangeRatesFacts[ReportingPeriod] = [LastReportingPeriod]
)
)
Hi @Zubair_Muhammad ,
Thanks for all of your insight in the forums. I have used your outline for my project but am unable to show any results. I have the same use case, where I need to get a variance between two months within a matrix.
Here is my modified code:
What if you remove the filter function?
Diff =
CALCULATE ( SUM ( Original[Tax] ), Original[Period] = 3 )
- CALCULATE ( SUM ( Original[Tax] ), Original[Period] = 2 )
Still having the same issue with no data populating. I'm sure I'm missing something very easy but I can't figure it out. There are also no filters.
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 |
|---|---|
| 23 | |
| 19 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 60 | |
| 52 | |
| 47 | |
| 40 | |
| 38 |