Forum Discussion
damit23183
Microsoft Employee
6 years agoData not coming as expected
Hi, I am trying to create MATRIX table with hierarcy on (Region, Office, Manager) and all other columns will have aggregate (Measure/Calculated Field) value. However, I would like to show all...
- 6 years agoPerhaps:
Total Number of Decision =
VAR __value = CALCULATE(
COUNT('Table'[ID]),
Filter('Table', NOT(ISBLANK('Table'[Date])))
)
RETURN
IF(ISBLANK(__value),0,__value)
Greg_Deckler
Community Champion
6 years agoPerhaps:
Total Number of Decision =
VAR __value = CALCULATE(
COUNT('Table'[ID]),
Filter('Table', NOT(ISBLANK('Table'[Date])))
)
RETURN
IF(ISBLANK(__value),0,__value)
Total Number of Decision =
VAR __value = CALCULATE(
COUNT('Table'[ID]),
Filter('Table', NOT(ISBLANK('Table'[Date])))
)
RETURN
IF(ISBLANK(__value),0,__value)
damit23183
Microsoft Employee
6 years agoHi,
Quick question though,
Is there a way I can put blank instead of 0.
I did try with BLANK() instead of 0 but result was filtered out. I am getting expected result with 0 only, however i would like to put blank or empty cell instead of 0.
Thanks