Forum Discussion
Dim table not to filter
Hi
I have the following issue
I have a dim table containing a column of job numbers (1,2,3,4,5,....so on)
I have a fact table containing sale value against the job numbers.
Fact table contain only those job values against which sale invoice raised.
Both the table relationship created by job no.
I want a matrix visual which displays all job numbers from dim table
whether sale value is found in fact table or not. If sale value is raised,
it should show sale value otherwise blank or o.
I used CALCULATE(SUM('facttable'[sale amt}), ALL('dim table[job no.])
it gives sum total of sale value of all job numbers.
Pls hlep
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/DenSelimovicHey 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
3 Replies
- selimovdMost Valuable Professional
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 - ThulasiramanHelper II
Thank u so much Denis. I was strugling with dax without knowing this simple technique.
However is there any way for a dax solution, since I would require only the job numbers which is not billed.
Now I have to filter the blanks to get it.
Thanks in advance.
Best regards.
- selimovdMost Valuable Professional
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