Forum Discussion
YunJ
Post Prodigy
5 years agoHow to use DAX return a table without blank rows?
Hi, I used DISTINCT to return a distinct column as a dimention table. But I don't want the blank rows. I'm wondering can I return a table without the blank rows? Thanks Yun
- 5 years ago
YunJ , Try like
filter(distinct(Table[Division]), not(isblank([Division])))
amitchandak
Super User
5 years agoYunJ , Try like
filter(distinct(Table[Division]), not(isblank([Division])))