Forum Discussion

pucities's avatar
pucities
Frequent Visitor
6 years ago
Solved

Data Profiling in M: Count of Numeric Values (Table.Profile)

Hello,   I created a data profiling table in Power Query from a table(T_File)   let Source = Table.Profile(T_File) in Source     How do I add another aggregate column to the data profile ta...
  • ImkeF's avatar
    ImkeF
    6 years ago

    Hi pucities 

    Please try this:

    List.Count(List.Select( Source[Column1], each try Value.Is(Number.From(_), type number) otherwise null))