Forum Discussion
marri
8 years agoFrequent Visitor
Measure displaying blank value
Hi, I have a measure which displays blank value instead of 0. My problem scenario is like this. Ihave different tables with relations, in which one table acts like fact table and all other tabl...
- 8 years ago
Hi,
Try this
=IF(ISBLANK(CALCULATE(COUNT('Item'[ID]), FILTER(STATUS,status[Status Code]="open"))),0,CALCULATE(COUNT('Item'[ID]), FILTER(STATUS,status[Status Code]="open")))
Does this work?
san_jois
8 years agoResolver I
Hi,
I think the issue here is that it is not displaying Open count rows..
For that, I suggest you can edit the table view and for Status id column in the table (if it exists), you can choose 'Show items with no data'
Sorry, I am not sure how to represent blank as '0' if you want it specifically that way..
However, you can easily count the no. of blanks or zeros in table using a SUMX() function
Hope this helps
marri
8 years agoFrequent Visitor
Hi,
I wanted to display open count as measure. In the table visual open count is represented as count of itemids along with the fields of other dimensions. So, cannot use calculated column for this scenario
I wanted to display open count as measure. In the table visual open count is represented as count of itemids along with the fields of other dimensions. So, cannot use calculated column for this scenario