Forum Discussion
Dim table not to filter
- 4 years ago
Hey Thulasiraman ,
you don't have to struggle with a DAX measure. In general Power BI is hiding all rows that are blank.
But you can show them by going to the field options and selecting "Show items with no data":
That should solve your problem.
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution โ๏ธ and give it a thumbs up ๐
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic - 4 years ago
Hey Thulasiraman ,
I didn't see your reply as you didn't mention me with an @. Then I won't get notified.
Sure, you can also return a 0 with a DAX measure or a blank string, then the row will always be shown:
SUM to show in every line = VAR vSum = SUM( 'myTable'[myColumn] ) RETURN IF( vSum = BLANK(), "", vSum )If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution โ๏ธ and give it a thumbs up ๐
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
Hey Thulasiraman ,
you don't have to struggle with a DAX measure. In general Power BI is hiding all rows that are blank.
But you can show them by going to the field options and selecting "Show items with no data":
That should solve your problem.
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution โ๏ธ and give it a thumbs up ๐
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic