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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I have trouble to make the change column.
I want the [change] column to count the number of changes that hapens in [warehous] column per product.
thanks
Hi @Ronning ,
So basically a distinct count of [Warehouse] for each [Product]?
If so, then you can group by [Product], add Distinct Count and All Rows aggregated columns, then expand the nested tables back out again:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUXIyVIrVgTKNwEwjINPRDME0hzOhCowR2ozRRI2xiYIMiwUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Product = _t, Warehouse = _t]),
groupRows = Table.Group(Source, {"Product"}, {{"data", each _, type table [Product=nullable number, Warehouse=nullable text]}, {"changes", each Table.RowCount(Table.Distinct(_)), Int64.Type}}),
expandData = Table.ExpandTableColumn(groupRows, "data", {"Warehouse"}, {"Warehouse"})
in
expandData
Pete
Proud to be a Datanaut!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 12 | |
| 12 | |
| 10 | |
| 6 | |
| 5 |