Forum Discussion
Jelto83
5 years agoFrequent Visitor
Pivot Data into Lists without Aggregation/Counting or Summing the data
Hi, I'm sure that this is going to be an easy solution for someone out there, but it's had me in circles the last few days. Requirement: Users require a dynamic dependent dropdown list where ...
- 5 years ago
I've found an iterim own solution to this. I had to add an INDEX Column before Pivoting the data with out Aggretating it and it worked. Now have to format the data around but in essence it has sort of worked. Would still love a better solution in the longterm - I'm guessing some sort of incremental counter against each Supplier ID
Anonymous
5 years agoNot applicable
i think the table.group function is for you. If you submit a sample table, we can try it
- Jelto835 years agoFrequent Visitor
No problem and thank you!
What is the best way to submit a sample table (sorry also new to this site!) 😁
- Anonymous5 years agoNot applicable
you should do somethink like this:
let ..... your previuos steps LastStep= somefunction(ofsomethonk) ..... #"Modificato tipo" = Table.TransformColumnTypes(LastStep,{{"sn", type text}, {"sku", type text}}), rr = Table.Group(#"Modificato tipo", {"sn"}, {{"skALL", each _[sku]}}), tfc=Table.FromColumns(rr[skALL],rr[sn]) in tfc