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.
Hi,
I am working on a project for school, and i am running into an issue.
We are working with some financial data, and we have 3 different kinds of transactions:
Budgeted, Ordered and Completed.
We are using some slicers to filter the data to different subgroups, and also a date slicer which filters on date.
The Budgeted only has the date of 1-1-2020, the other 2 have all kinds of different dates in them.
My question is, Is it possible to exclude the budgeted column from the date slicer? This so that the Budgeted is always visible, even when there is a date filter active.
Solved! Go to Solution.
@Anonymous , One way is to stop interaction of budget visual with date. https://docs.microsoft.com/en-us/power-bi/create-reports/service-reports-visual-interactions
Or use all(date) in meausre
calculate(sum(Budget[Amount]), all(date))
@Anonymous Maybe budgeted should be split into its own table so you can view this independently from the other data? This can be done in Power Query - duplicate the query and filter for budget (you can use the filter arrow in Power Query to filter the transaction kind column)
Other option is to create measures for every visual you're using, that update the DAX context to always show the budget, but I think this will be less efficient. I can't say for certain as I don't know much about your report, but I would suggest putting budget in a separate table.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@Anonymous , One way is to stop interaction of budget visual with date. https://docs.microsoft.com/en-us/power-bi/create-reports/service-reports-visual-interactions
Or use all(date) in meausre
calculate(sum(Budget[Amount]), all(date))
this did the trick for me. Thnx alot!
calculate(sum(Budget[Amount]), all(date))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.