Forum Discussion
YunJ
5 years agoPost Prodigy
How 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
5 years agoSuper User
YunJ , Try like
filter(distinct(Table[Division]), not(isblank([Division])))