The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi everyone,
I have a table of sales :
I created two table visualisation : sales by month / sales sum by product and month
Now, i want to freeze my left table even if i use the month filter. That is possible?
I tried to create a measure : Measure = CALCULATE(SUM(SALES[SALES]),ALL(SALES[MONTH]))
But it doesn't work
Solved! Go to Solution.
Hi, @TITO22
You can try the following methods.
New table = VALUES('Table'[MONTH])
Measure = CALCULATE(SUM('Table'[SALES]),FILTER(ALL('Table'),[MONTH]=SELECTEDVALUE('New table'[MONTH])))
This visual will not interact with the source table.
Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @TITO22
You can try the following methods.
New table = VALUES('Table'[MONTH])
Measure = CALCULATE(SUM('Table'[SALES]),FILTER(ALL('Table'),[MONTH]=SELECTEDVALUE('New table'[MONTH])))
This visual will not interact with the source table.
Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The expected result is to have multiple tables (4,5...) in the report. Si i can't use a filter for each table. I have to use the page level filter
Hi, @TITO22
you cannot control the interaction with filter pane. page level filter will filter all the visuals on that page.
my suggestion is create a new calculated table for that column which you want to show in visuals is not affected by page level filter .
not connect that table with data model
To use edit interaction i must insert a slicer in the report. In my case i have to use the filter panel