Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. 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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 48 | |
| 36 | |
| 31 | |
| 29 |