hi @zapperrr
try
AddColumns(
GroupBy(
yourDataSource,
"your Column", //Equipement
"Different Equipment" //Group name for all the equipment
),
"Total",
CountRows('Different Equipment') //count the group name
)
Result
Creating a collection as data source to illustrate
ClearCollect(colSomeSource01, ForAll(Sequence(20),{equip: "Equipment Type " & RandBetween(1,3), 'Anohter Column': Value}))
AddColumns(
GroupBy(
colSomeSource01,
"equip",
"Different Equipment"
),
"Total",
CountRows('Different Equipment')
)

Hope this helps,
R