Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi Team,
Hw can I create a DAX/any other way in Power BI to create a subset of Data as a Table in the form of Matrix.
I Dont need to show it as Visualization but Have this Data in Table Form to perform further round of actions on them.
Base Data is
ID Status Month
1 | Open | January |
2 | Open | January |
3 | Open | February |
4 | Closed | January |
5 | Closed | February |
6 | Open | March |
7 | Open | April |
8 | Closed | April |
9 | Closed | April |
10 | Closed | May |
Needed as
Month Open Closed
January | 2 | 2 |
February | 1 | 1 |
March | 1 | 0 |
April | 1 | 2 |
May | 0 | 1 |
Regards,
Deepak
Solved! Go to Solution.
Hi @Deepak3Arora ,
Please create the new table.
Table 2 =
SUMMARIZE (
'Table',
'Table'[Month],
"Open",
CALCULATE ( COUNT ( 'Table'[ID] ), 'Table'[Status] = "Open" ) + 0,
"Closed",
CALCULATE ( COUNT ( 'Table'[ID] ), 'Table'[Status] = "Closed" ) + 0
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Deepak3Arora ,
Please create the new table.
Table 2 =
SUMMARIZE (
'Table',
'Table'[Month],
"Open",
CALCULATE ( COUNT ( 'Table'[ID] ), 'Table'[Status] = "Open" ) + 0,
"Closed",
CALCULATE ( COUNT ( 'Table'[ID] ), 'Table'[Status] = "Closed" ) + 0
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Suhaib,
Sorry If i confused you but I need to have this data in a Table to perform more actions on it rather than showing in the visualization.
Regards
Deepak
Hello Amit,
I need to save the data as a subset and not visualization.
Regards,
Deepak
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 |
---|---|
73 | |
71 | |
54 | |
38 | |
31 |
User | Count |
---|---|
71 | |
64 | |
62 | |
50 | |
46 |