Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Good Afternoon,
There must be an obvious reason but I cannot fathom it out. I am trying to include a KPI visual which compares YTD sales figures with Previous YTD sales, but I get and empty comparison.
Here is the screenshot:
The two boxes underneath are the measure reflecting both current and previous year YTD sales numbers.
The trend axis is "year".
Any pointers??
Thank you very much for your help!
regards
Paul.
Proud to be a Super User!
Paul on Linkedin.
Solved! Go to Solution.
Thanks for sharing the pbix. Add ALL to the filter to exclude any filter context.
Sales YTD = calculate(sum('Campañas2'[Facturación Real]), Filter(ALL(YearMonth), YearMonth[month]<= MONTH(TODAY()) && YearMonth[year]=YEAR(TODAY()) )) Sales MonthTD Previous Year = calculate(sum('Campañas2'[Facturación Real]), Filter(ALL(YearMonth), YearMonth[month]= MONTH(TODAY()) && YearMonth[year]=YEAR(TODAY())-1 ))
Sure I can share a sample pbix file? How do I share it though??
Proud to be a Super User!
Paul on Linkedin.
You can upload a pbix file to Onedrive or any web storage and share the link. Do mask sensitive data before uploading.
Here it is:
Proud to be a Super User!
Paul on Linkedin.
Thanks for sharing the pbix. Add ALL to the filter to exclude any filter context.
Sales YTD = calculate(sum('Campañas2'[Facturación Real]), Filter(ALL(YearMonth), YearMonth[month]<= MONTH(TODAY()) && YearMonth[year]=YEAR(TODAY()) )) Sales MonthTD Previous Year = calculate(sum('Campañas2'[Facturación Real]), Filter(ALL(YearMonth), YearMonth[month]= MONTH(TODAY()) && YearMonth[year]=YEAR(TODAY())-1 ))
Hi Eric, I used to have the same issue as you.
I solve my issue by correcting my model relationship between fact table and date dim table.
So I suggest you to check you relationship.
Thanks you!!!
You're an absolute star!
(I only wish I understood why addin "ALL" is necessary though...)
Best regards,
Paul.
Proud to be a Super User!
Paul on Linkedin.