Forum Discussion
o59393
6 years agoPost Prodigy
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...
- 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
amitchandak
6 years agoSuper User
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