Forum Discussion

o59393's avatar
o59393
Post Prodigy
6 years ago
Solved

How to skip empty values when using summarize+distinct

Hi all   How can I skip empty values from a new table I am creating like this?     These values come from a table called query, can the empty values be skipped from my table called "date t...
  • amitchandak's avatar
    6 years ago

    o59393 , Try like

    summarize(filter(Table,not(isblank(Table[Hire Date]))),Table[Hire Date])

     

    I doubt you need a distinct on top of it. But you can use if needed