Forum Discussion
Make Card Visual show 0 not Blank
- 8 years ago
Hi srhsloan,
Power BI measures behave like that by design. You need to set it in your measure If you want to override this behavior. You can make your DAX measure something like this:
MEASURE = IF ( ISBLANK ( SUM ( 'Table'[Sales] ) ), 0, SUM ( 'Table'[Sales] ) )
Be aware that the this will affect how the visuals that use this modified measure and other measures that are dependent on this modified measure look.
Hi srhsloan,
Power BI measures behave like that by design. You need to set it in your measure If you want to override this behavior. You can make your DAX measure something like this:
MEASURE = IF ( ISBLANK ( SUM ( 'Table'[Sales] ) ), 0, SUM ( 'Table'[Sales] ) )
Be aware that the this will affect how the visuals that use this modified measure and other measures that are dependent on this modified measure look.
You can also use the following if the dataType of the column you are working with is "string":
hope this helps anyone.
MEASURE =
IF ( ISBLANK ( COUNTA('Table'[Sales] ) ), 0, COUNTA('Table'[Sales] ) )