Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi All,
In my case, doubling the DIM tables in order to use them as independent columns in the same visual, i used the following Measures
I would appreciate your assistance
Thanks
Hi @netanel
You can use ALLEXCEPT, it will remove all the filter from all the columns from atable except the ones indicated in the argument.
Hi @tamerj1
I thought about it but it's a problem
Because I want each user to be able to choose what they want in any given column
without damaging the rest of the columns
I don't follow. What columns are the users choosing? The same or different columns that you're removing filters on?
In general, how do you decide which columns to REMOVEFILTERS and which ones not to?
Hi @AlexisOlson
The same columns of filters
The report looks like this, there is an option to filter each column according to its filters
I will expand
I created a column selection in filters
There are currently two columns and two sets of filters to filter the columns
The user chooses
Date for the report
version of a report
scenario for the report
and Plan element for the report
and the column changes accordingly
What I did was create duplicates of the following DIMS
Date
version
scenario
Plan Element
And my Measure refers only to the first DIM and Removefilters ignores the second DIM (2)
Now I want to create more columns but I don't want to double the DIM the third and fourth time
That's why I want to change the logic of RemoveFilters
You can use REMOVEFILTERS on entire tables rather than just columns.
So for example,
Column A =
CALCULATE (
SUM ( Epm_Fct[Amount_N] ),
REMOVEFILTERS ( DateB ),
REMOVEFILTERS ( ScenarioB ),
REMOVEFILTERS ( VersionB ),
REMOVEFILTERS ( PlanElementB )
)
Column B =
CALCULATE (
SUM ( Epm_Fct[Amount_N] ),
REMOVEFILTERS ( DateA ),
REMOVEFILTERS ( ScenarioA ),
REMOVEFILTERS ( VersionA ),
REMOVEFILTERS ( PlanElementA )
)
@AlexisOlson Thanks
I thought about it, don't know why I didn't implement it
But now I updated mine
What do you think about the rest of the case?
That looks a lot more maintainable now.
I'm not sure what "the rest of the case" is.
@AlexisOlson
As I wrote above
I am trying to replace the removefilters logic
So that I can add more columns to my table
Sorry. I still don't follow.
If you add additional columns to the existing tables, this method should still work since it's removing all filters on the tables (including any new ones).
Please see that column A gat data form dim and column B get data from other Dim (2)
And the removefilter intract them saprdly
So if whant more clomun i need to creat more Dim
That the reason i whant the replace the remove filter
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
118 | |
84 | |
49 | |
38 | |
30 |
User | Count |
---|---|
188 | |
76 | |
73 | |
54 | |
45 |