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.
Solved! Go to Solution.
Three ways to do that (at least).
1 - You can do it in the query editor by adding a GroupBy step in the ID column, clicking on Advanced in the Group pop up and add grouping to the other 1 or 2 columns.
2 - Also in the query editor, you could add a step with Remove Duplicates and update the Table.Distinct( ) with the list of columns to summarize by.
3 - You can make a DAX calculated table with
New Table = SUMMARIZE(Table, Table[ID], Table[Date], Table[Value])
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@Anonymous
You cam go to Modeling Click on New Table and paste the following code to get the result as a table:
Distinct Table = DISTINCT(Table)
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Three ways to do that (at least).
1 - You can do it in the query editor by adding a GroupBy step in the ID column, clicking on Advanced in the Group pop up and add grouping to the other 1 or 2 columns.
2 - Also in the query editor, you could add a step with Remove Duplicates and update the Table.Distinct( ) with the list of columns to summarize by.
3 - You can make a DAX calculated table with
New Table = SUMMARIZE(Table, Table[ID], Table[Date], Table[Value])
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
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 |
---|---|
10 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
20 | |
14 | |
10 | |
9 | |
6 |