Forum Discussion

msheppard602's avatar
msheppard602
Frequent Visitor
4 years ago
Solved

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...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Try this:

     

    Table.TransformColumns(#"Added Custom", {"CPT_pattern", each Text.Combine(List.Transform(List.Sort(_, Order.Descending), Text.From), " "), type text})

     

    --Nate