Forum Discussion
Split a dataset into multiple tables automatically based on the column
Anonymous , I doubt you can split and create tables. You may create tables and filter data as per need
- Anonymous4 years agoNot applicable
I have used a DAX expression using
Table_District = FILTER('Dataset'[Caption] = "District").
This has the limitation that if the District changes to District1 the following table will not be created
Generally, I would like to create the tables automatically.
How i can do that?
- v-easonf-msft4 years ago
Community Support
Hi, Anonymous
Currently PowerBI does not support automatic splitting of the table by the row value of a certain column.
If the District changes to District1, you need to use another Dax expression
Table_District1 = FILTER ( 'Dataset', 'Dataset'[Caption] = "District1" )For your requirement , you can submit it as an idea on Power BI Ideas forum and add your comments there to make this feature coming sooner.
Best Regards,
Community Support Team _ Eason