Forum Discussion
msheppard602
4 years agoFrequent Visitor
syntax help to extract values in desc order
Hi, I am not an expert using this syntax and hoping I can tap the brain trust here to accomplish what I want quicker than tinkering with list.sort syntax on my own. Haven't been able to accomplish...
- Anonymous4 years ago
Try this:
Table.TransformColumns(#"Added Custom", {"CPT_pattern", each Text.Combine(List.Transform(List.Sort(_, Order.Descending), Text.From), " "), type text})
--Nate
Anonymous
4 years agoNot applicable
Try this:
Table.TransformColumns(#"Added Custom", {"CPT_pattern", each Text.Combine(List.Transform(List.Sort(_, Order.Descending), Text.From), " "), type text})
--Nate
msheppard602
4 years agoFrequent Visitor
Brilliant! I started reading about table.buffer and was hoping there was an easier solution. You provided it. Thank you.