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! Get ahead of the game and start preparing now! Learn more
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! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 68 | |
| 66 | |
| 58 |