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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi everyone!,
I am trying to calculate the following but I just obtain a blank space: It is defined the following:
==> These measures works fine:
==>BUT This doesn't work!!:
What I need to know is the sales of the last month, but only of the ones that won the incentive this month. The structure works when I use as a filter a column that exists in a Table instead of a measure (as [Incentive_AchievementRate])
What can I do?
Thanks!
Solved! Go to Solution.
It's hard to tell without seeing your model, but it looks like you are filtering the whole fact table - Filter(Sales_All), ...
What field/column do you calculate incentive winners on usually (employees, departments, etc.)? I would have expected you had Filter(All(Sales_All[Employee]), [Incentive_AchievementRate]>1) instead.
If this solution works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
It's hard to tell without seeing your model, but it looks like you are filtering the whole fact table - Filter(Sales_All), ...
What field/column do you calculate incentive winners on usually (employees, departments, etc.)? I would have expected you had Filter(All(Sales_All[Employee]), [Incentive_AchievementRate]>1) instead.
If this solution works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Indeed, the problem was the table. Thanks!