In a flow, after my get items step, I am looking to count the total times a SharePoint list value occurs:
SPList Name = VehicleInventory
SPColumn Name = VehicleModel
Column Values (as of this moment) Volvo(9) Ford (3) etc etc
Without manually creating the variables up front for each vehicle type (avoid future flow maintenance) and doing an increment step, how can I do this in FLow?
I am stuck on 'composing' in the flow that will return a count value of each VehicleModel, and appreciate the assist!
End goal is to pop into my HTML table something as follows:
Volvos in the Fleet - 9
Fords in the Fleet -3
Kias in the Fleet -2
Many thanks!