Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Using Upper data I want a lower table in power query
I mean I need, Project id, Count of the total, count of completed and tag as separate Column
pls help me
Solved! Go to Solution.
Sure thing, here's the file:
let
Source = Table1,
#"Grouped Rows" = Table.Group(Source, {"projectID", "tags"}, {{"Total Count", each Table.RowCount(_), type number}, {"Data", each _, type table}}),
#"Added Custom" = Table.AddColumn(#"Grouped Rows", "Completed Count",
each List.Count(
List.FindText( [Data][status],"Completed")
), Int64.Type
),
#"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Data"})
in
#"Removed Columns"can I have a snapshot of power query step? or PBIX FILE, please
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 41 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 150 | |
| 107 | |
| 64 | |
| 36 | |
| 36 |