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
YunJ , Try like
filter(distinct(Table[Division]), not(isblank([Division])))
1 Reply
- amitchandak
Super User
YunJ , Try like
filter(distinct(Table[Division]), not(isblank([Division])))