Hi, I have the below column in my query that i am trying to replicate in Alteryx what is the best solution.
max(bb.Number_Sku) over (ORDER BY bb.DEPTCATG, bb.Number_Sku desc) as CategoryMaxSkuCount
Example Data
DeptCatG Number_Sku
73_60 2
73_60 5
72_80 2
72_80 7
The new column i am wanting is to show the max with in the Number_sku.
Thanks
Martin