Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I have a table that has thousands of records on it and want to keep it as is.
I need to have another version of this table, but with filter conditions on it and was going to duplicate the first table and add the filters, but wasn't sure if this is the more effiicent way to go about this or should I add a reference or I could add a flag to the original table based on a if condition.
Solved! Go to Solution.
Hello @EaglesTony ,
Yes you can create a same but depends what is the datasource. If its a SQL data you can write a query to filter the data to get only the columns that you need.
However if the data source is a flat file then you can either use power Query but for that you need to duplicate the table and then use power Query to filter the data. Alternatively, you can use DAX to create a calculated table but creating a new blank table and then definbe your DAX measure. For e.g you can have something like this
FilteredTable =
FILTER(
OriginalTable,
[SomeColumn] = "SomeValue"
)
Hope this would solve your query if not you can elaborate about the data sources to give a more proper solution.
Did I answer your question? Mark my post as a solution!
If I helped you, click on the Thumbs Up to give Kudos.
Hello @EaglesTony ,
Yes you can create a same but depends what is the datasource. If its a SQL data you can write a query to filter the data to get only the columns that you need.
However if the data source is a flat file then you can either use power Query but for that you need to duplicate the table and then use power Query to filter the data. Alternatively, you can use DAX to create a calculated table but creating a new blank table and then definbe your DAX measure. For e.g you can have something like this
FilteredTable =
FILTER(
OriginalTable,
[SomeColumn] = "SomeValue"
)
Hope this would solve your query if not you can elaborate about the data sources to give a more proper solution.
Did I answer your question? Mark my post as a solution!
If I helped you, click on the Thumbs Up to give Kudos.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
75 | |
54 | |
37 | |
31 |
User | Count |
---|---|
99 | |
56 | |
50 | |
42 | |
40 |