Forum Discussion
elopez
Helper I
6 years agoReplacing null values in matrix visual
Hi, I created a table using the matrix visual. My values are sums of number of records in a field (named 'Faculty Rank' and once I drag that field under values, I choose the Count option). I wan...
- 6 years ago
Hi elopez ,
Based on my research, If your table does not have at least one row record in the blank cell (such as our following example), the measure will not calculate at all:
We can use a separated table such as following to meet your requirement
Calculated Table:
Column = DISTINCT('Table'[Column])Measure:
Measure Value = CALCULATE([Measure]+0,'Table'[Column] in DISTINCT('Column'[Column]))
By the way, PBIX file as attached.
Best regards,
amitchandak
Super User
6 years agocan not say without looking at data and formula.
But Typically we add + 0 to the formula to deal with it
Measure = calculate(<Formula>) +0
or Coalesce( calculate(<Formula>),0)
or Coalesce( calculate(<Formula>),0) +0